Questions related to the iOS UIImagePickerController class (and the associated UIImagePickerControllerDelegate protocol), which provides system-supplied user interfaces for taking pictures and movies on iOS devices, and for choosing saved images and movies.
-(IBAction)selectPressed:(id)sender { UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; [self presentModalViewController:picker animated:…
iphone objective-c ipad uiimagepickercontroller galleryI am updated an app from ios7 to ios8 and struggling to get UIImagePicker working to load a picture from …
ios ios8 uiimagepickercontroller photosframework photostreamI am trying to get the thumbnail of the video which is pick up from library using the UIImagePickerController. Here …
video uiimagepickercontroller thumbnailsI have a UIImagePickerController being called with sourceType camera and 80% of the time I get a black preview. If I …
iphone uiimagepickercontroller ios7UIImageWriteToSavedPhotosAlbum is only working sometimes. Sometimes it works, sometimes it doesn't, exact same function. - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(…
cocoa-touch uiimagepickercontroller iphone-sdk-3.1what is wrong with this? I really don't understand some important parts for UIImagePickerController.... here's the source: UIImagePickerController *imagePickerController = [[UIImagePickerController …
iphone uiimagepickercontrollerAfter user choose image from the iPhone library with UIImagePickerController, I want to upload it to my server using ASIHTTPRequest …
iphone objective-c ios uiimagepickercontroller asihttprequestAs the title states the app that I am developing has an issue that is caused only when the app …
iphone camera uiimagepickercontrollerI've been able to get pretty far with what I've been wanting to accomplish, and that's to replicate iOS's built …
ios objective-c ios7 uiimagepickercontroller cashapelayerI'm trying to build a QRCodeReader for a project our research group is working on for the iPhone. After much …
iphone uiimagepickercontroller cgimage