문제

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?

도움이 되었습니까?

해결책

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];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top