任何人都可以帮我这个代码吗?
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也会卡住。我不知道如何在文档目录中显示所有图像。