メッセージング アプリケーションを開発していて、iMessage アプリと同様のポップアップ ウィンドウでカメラ ロール インターフェイスを開きたいと考えています。
この機能を実現するにはどうすればよいですか?
メッセージング アプリケーションを開発していて、iMessage アプリと同様のポップアップ ウィンドウでカメラ ロール インターフェイスを開きたいと考えています。
この機能を実現するにはどうすればよいですか?
これがうまくいくことを願っています
//画像ピッカーを初期化し、ポップオーバー コントローラーに追加する
UIImagePickerController* imagePickerController= [[UIImagePickerController alloc] init];
imagePickerController.delegate=self;
imagePickerController.sourceType= UIImagePickerControllerSourceTypePhotoLibrary;
popoverController= [[UIPopoverController alloc] initWithContentViewController:imagePickerController];
[popoverController presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];