首页 > 代码库 > UIImageWriteToSavedPhotosAlbum crash

UIImageWriteToSavedPhotosAlbum crash

有时使用 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