我想鏈接我的照片庫,以顯示UIImageView中的圖像,這將允許我添加過濾器,但是當您選擇照片並點擊「選擇」應用程序崩潰。以下是我正在使用的代碼; - (IBAction爲)chooseImage:(ID)發送方{UIImagePickerController委託警告 - 不兼容的類型
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentViewController:picker animated:YES completion:nil];
}
的錯誤是在該行:
"picker.delegate = self;"
和被標記爲*「分配到從不兼容的類型的 'id'「VSViewController const_strong」
請如果任何人有關於如何解決它或備用的代碼,將操作的建議,即,將不勝感激。
請儘量避免使用複雜的語言,我對編碼感到陌生,這個問題讓我一陣沮喪。
您有加入的UIImagePickerController委託給你的.H? – JMarsh
我不這麼認爲,那是什麼編碼? – user3739491
在VSAppDelegate.h或VSViewController.h下?我嘗試了兩種方法,但在 – user3739491