如何处理从Gallery中选择损坏的图像,因为它导致UIImagePickerController崩溃

时间:2016-06-30 11:12:30

标签: objective-c swift

我想验证从手机图库中选取的图像是正常图像还是损坏的图像?,如果图像已损坏,则返回nil会导致应用程序在单击选择按钮时崩溃。请有人帮我解决这个问题。

在此先感谢...!

编辑:

当选择了损坏的图像时,我没有收到这个委托方法的回调

-(void)imagePickerController:(UIImagePickerController *) imagePicker didFinishPickingMediaWithInfo:(NSDictionary *)info;
{
 if ([info objectForKey:UIImagePickerControllerOriginalImage] == nil) {
    NSLog(@"The image selected is Corrupted");
    [self dismissViewControllerAnimated:YES completion:^{
    }];

}

请帮我解决这个问题..

0 个答案:

没有答案