使用UIControllerView的文档目录

时间:2016-09-27 16:50:25

标签: ios swift uicollectionview

任何人都可以帮我这个代码吗?

override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! CollectionViewCell

    let fileManager = FileManager.default
    let imagePAth = (self.getDirectoryPath() as NSString).appendingPathComponent("Yosemite.jpg")

    if fileManager.fileExists(atPath: imagePAth) {
        cell.imageView.image = UIImage(contentsOfFile: imagePAth)
        print("Image")
    }else {
        print("No Image")
    }

    return cell
}

此代码应将文档目录中的图像显示为UICollectionViewCell。即使我告诉它显示一个图像Yosemite.jpg,Xcode也会卡住。我不知道如何在文档目录中显示所有图像。

0 个答案:

没有答案