Приведенный ниже код предназначен для перехода в фотоальбомы. Ниже приведен код ошибки.Я добавляю UIImagePickerControllerDelegates, как это в моем .h файле:
@interface My_Pictures : UIViewController <UINavigationControllerDelegate,UIImagePickerControllerDelegates>
Но я не импортирую ничего в мой файл .m.Должен ли я включить какие-либо из рамок?Пожалуйста, дайте мне четкое объяснение.
ipc = [[UIImagePickerController alloc] init];
ipc.delegate = self;
if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
{
ipc.sourceType = UIImagePickerControllerSourceTypeCamera;
}
else {
ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
}
[self presentModalViewController:ipc animated:YES];