你好,我可以得到一個UITableView
來顯示存儲在文檔文件夾中的圖像的文件名。有沒有辦法讓UICollectionView
在集合視圖中顯示這些圖像?UICollectionView顯示存儲在文檔目錄中的圖像
感謝利亞姆
你好,我可以得到一個UITableView
來顯示存儲在文檔文件夾中的圖像的文件名。有沒有辦法讓UICollectionView
在集合視圖中顯示這些圖像?UICollectionView顯示存儲在文檔目錄中的圖像
感謝利亞姆
當然可以。這裏是UICollectionView Programming Guide。
UICollectionView
+imageNamed:
方法與collectionView:cellForRowAtIndexPath:
返回小區。記得用UIImageView
在裏面創建自定義單元格,創建outlet。
這裏是Tutorial哪些應該可以幫到你。
// fetch all the files from the documents directory.
NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
library = [path objectAtIndex:0];
fileArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:library error:nil];
NSArray *imagelist = [[NSArray alloc] init];
// filter the images from all the files.
for(int i = 0;i<fileArray.count;i++)
{
id object = [fileArray objectAtIndex:i];
if ([object rangeOfString:@".png"].location !=NSNotFound)
{
[imagelist addObject:object];
}
}
然後創建以下UICollectionView數據源在集合視圖中添加項目集合查看和使用的情況下,
是的,有很多教程存在。 –