¿Qué hay de malo en esto? Realmente no entiendo algunas partes importantes para UIImagePickerController ....Excepción de UIImagePickerController: "El tipo de fuente debe ser UIImagePickerControllerSourceTypeCamera"
aquí está la fuente:
UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imagePickerController.cameraCaptureMode = UIImagePickerControllerCameraCaptureModePhoto;
imagePickerController.delegate = self;
[self presentModalViewController:imagePickerController animated:YES];
[imagePickerController release];
¿No puedo abrir la biblioteca de fotos? ¡Cualquier ayuda apreciada!
esa fue la razón, 10x! – Danail
Otras propiedades causarán fallas similares, p. cámaraViewTransform – dpjanes