私のアプリケーションに問題がありますが、私はiosで新しくなったようです。私のプロジェクトにはrootViewAppDelegate、* rootviewController *、cameraViewControllerが含まれています。UIImagepickerがIPadのストーリーボードに表示されない
マイrootViewcontrollerは、ボタンが押されたとき、それはcameraViewController .MYがUIImagepicker含まcameraViewControllerに行くということで実装メニュータイプコードを持っています。
ipadのUIImagePickerについてのチュートリアルでは、コードの一部をデリゲートに貼り付ける必要があると言います。そこで私はrootViewAppDelegateに貼り付けました。私はプロジェクトを実行します。 cameraViewControllerに何も表示されていません。私は間違って何かを逃したか返信ありがとう。私が起こっていると思うものをすべての詳細を、持っていない
私はUIImagePickerControllerDelegateの別のクラスを作成しますか? – Bazinga
必ずしもそうではありません。あなたのcameraViewControllerはUIPickerの代理人になれるはずです。 UIPickerControllerDelegate自体はiOS APIの一部です。 - この例を参照してください:https://agilewarrior.wordpress.com/2012/01/;委任参照:http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerControllerDelegate_Protocol/UIImagePickerControllerDelegate/UIImagePickerControllerDelegate.html – drb9979
必要はありません。あなたのcameraViewControllerは、UIImagePickerControllerのデリゲートとして動作できます。そのためにはUIImagePickerControllerDelegateであるために必要なメソッドを含める必要があります。 - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info – drb9979