Question

I develop a messaging application and want to open a Camera Roll interface in the pop-up window similar to iMessage app: enter image description here

How can I achieve this functionality?

Was it helpful?

Solution

Hope this works for you

//initialize image picker and add to popover controller

  UIImagePickerController* imagePickerController= [[UIImagePickerController alloc] init];   
    imagePickerController.delegate=self;    
    imagePickerController.sourceType= UIImagePickerControllerSourceTypePhotoLibrary; 
popoverController= [[UIPopoverController alloc] initWithContentViewController:imagePickerController];
   [popoverController presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top