我有一些来自文件夹的图片。
现在,我希望将文档文件夹中的所有图像设置为UIImageView,UIImageView必须在tableViewCell内部。
怎么做?
请帮助我!
编辑:
答案 0 :(得分:4)
试试这个..
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *myPath = [paths objectAtIndex:0];
// if you save fies in a folder
//myPath = [myPath stringByAppendingPathComponent:@"folder_name"];
NSFileManager *fileManager = [NSFileManager defaultManager];
// all files in the path
NSArray *directoryContents = [fileManager contentsOfDirectoryAtPath:myPath error:nil];
// filter image files
NSMutableArray *subpredicates = [NSMutableArray array];
[subpredicates addObject:[NSPredicate predicateWithFormat:@"SELF ENDSWITH '.png'"]];
[subpredicates addObject:[NSPredicate predicateWithFormat:@"SELF ENDSWITH '.jpg'"]];
NSPredicate *filter = [NSCompoundPredicate orPredicateWithSubpredicates:subpredicates];
NSArray *onlyImages = [directoryContents filteredArrayUsingPredicate:filter];
for (int i = 0; i < onlyImages.count; i++) {
NSString *imagePath = [myPath stringByAppendingPathComponent:[onlyImages objectAtIndex:i]];
UIImage *tempImage = [UIImage imageWithContentsOfFile:imagePath];
// do something you want
}