Search code examples
iosobjective-ccocoa-touchimessagecamera-roll

How can I open Camera Roll in pop up window in iOS?


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?


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];