I have a gif image in my photo album. When I use the UIImagePickerController to select that image, I need to convert the image to NSData for storin
UIImagePickerController
NSData
Code to coverting .GIF file can converted in NSdata -
NSString *pathForFile = [[NSBundle mainBundle] pathForResource: @"myGif" ofType: @"gif"]; NSData *dataOfGif = [NSData dataWithContentsOfFile: pathForFile]; NSLog(@"Data: %@", dataOfGif);