关于照片缓存本地化

下次用直接读取沙盒, 没有再创建
这是我曾经写过的汤姆猫动画其中把一组照片加入数组的部分
for (int i = 0; i < count + 1; i++) {

    NSString *str = [NSString stringWithFormat:@"%@_%02d", name, i];
    
    NSString *path = [[NSBundle mainBundle] pathForResource:str ofType:@"jpg"];
    
    UIImage *image = [UIImage imageWithContentsOfFile:path];
    
    NSLog(@"%@", path);
    
    [self.mArr addObject:image];

你可能感兴趣的:(关于照片缓存本地化)