然后
UIImage *myImage = [UIImage imageWithContentsOfFile:path];
然后对 myImage 进行处理或者保存 就会报错,直接导致app crash
采用上面的处理方式,终于解决了问题
UIImage *myImage = [UIImage imageWithContentsOfFile:path];
to
NSData *img = [NSData dataWithContentsOfFile:path];
UIImage *photo = [UIImage imageWithData:img];
没有评论:
发表评论