ios开发,将图片存到相册中


@interface IWViewController ()


@end


@implementation IWViewController


- (void)viewDidLoad
{
    [super viewDidLoad];
    
    for (int i = 0; i<9; i++) {
        NSString *file = [NSString stringWithFormat:@"/Users/aplle/Desktop/images/%d.jpg", i];
        
        UIImage *image = [UIImage imageWithContentsOfFile:file];
        UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
    }
    
}

@end

猜你喜欢

转载自blog.csdn.net/GuodongSun0/article/details/46576475