我正在使用以下代码将一些图像保存到应用程序的文档目录中。
for (int k=0;k<[_imageNames count];k++)
{
NSString *imagePath = [dataPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%d.jpg",k]];
NSData *data = UIImageJPEGRepresentation([_imageNames objectAtIndex:k], 1.0f);
[data writeToFile:imagePath atomically:YES];
}
现在我正在尝试将图像顺序加载到 NSMutableArray 中。有人可以指出我正确的方向。