アプリでELCImagePickerControllerを使用しています。Githubからダウンロードしたデモによると、私が使用したコードは
ELCAlbumPickerController *albumController = [[ELCAlbumPickerController alloc] initWithNibName:@"ELCAlbumPickerController" bundle:[NSBundle mainBundle]];
ELCImagePickerController *elcPicker = [[ELCImagePickerController alloc] initWithRootViewController:albumController];
[albumController setParent:elcPicker];
[elcPicker setDelegate:self];
ELCImagePickerDemoAppDelegate *app = (ELCImagePickerDemoAppDelegate *)[[UIApplication sharedApplication] delegate];
[app.viewController presentModalViewController:elcPicker animated:YES];
[elcPicker release];
[albumController release];
ELCImagePickerDemoAppDelegateは私のアプリケーションのAppDelegateではないため、これで機能しなくなります。したがって、この画像ピッカーを私のアプリに統合するための正しいコードは何である必要があります。また、アプリにUIViewControllerサブクラスを追加して、
[self presentModalViewController:elcPicker animated:YES];
しかし、それはピッカーを表示せず、メッセージをログに記録します
deallocing ELCImagePickerController
誰かが私を正しい方向に導くことができますか?