我想验证从手机图库中选取的图像是正常图像还是损坏的图像?,如果图像已损坏,则返回nil会导致应用程序在单击选择按钮时崩溃。请有人帮我解决这个问题。
在此先感谢...!
编辑:
当选择了损坏的图像时,我没有收到这个委托方法的回调
-(void)imagePickerController:(UIImagePickerController *) imagePicker didFinishPickingMediaWithInfo:(NSDictionary *)info;
{
if ([info objectForKey:UIImagePickerControllerOriginalImage] == nil) {
NSLog(@"The image selected is Corrupted");
[self dismissViewControllerAnimated:YES completion:^{
}];
}
请帮我解决这个问题..