0

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?

MainstreamDeveloper00
  • 8,436
  • 15
  • 56
  • 102

1 Answers1

4

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];
legend
  • 126
  • 1
  • 2