标签:uiimagewritetosavedp crash exc_bad_access
有时使用 UIImageWriteToSavedPhotosAlbum 保存图片到相册会crash 出现 exc_bad_access的错误。可以尝试下先将image转为png,再存储。
代码如下:
UIImage* image = myImage;// myImage为自己的图片 NSData* imageData = UIImagePNGRepresentation(myImage); UIImage* newImage = [UIImage imageWithData:imageData]; UIImageWriteToSavedPhotosAlbum(newImage, nil, nil, nil);
UIImageWriteToSavedPhotosAlbum crash
标签:uiimagewritetosavedp crash exc_bad_access
原文地址:http://blog.csdn.net/dauihiy/article/details/42526367