iOS 保存图片到相册

2017-10-17  本文已影响9人  申申申申申
- (void)saveToPhotosAlbumWithImage:(UIImage *)image {
    UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didSavedWithError:contextInfo:), (__bridge void *)self);
}

// 如果 error 为 nil,表明保存成功
- (void)image:(UIImage *)image didSavedWithError:(NSError *)error contextInfo:(void *)contextInfo {

    NSLog(@"image = %@, error = %@, contextInfo = %@", image, error, contextInfo);
}

上一篇 下一篇

猜你喜欢

热点阅读