UICollectionView不显示图像

时间:2019-07-05 14:04:36

标签: swift xcode uiviewcontroller uicollectionview uicollectionviewcell

我试图借助UICollectionView显示水平可滚动图像的集合。我为单元做了一个自定义的视图控制器文件,但仍然没有显示任何图像。这是我在Viewcontroller中的代码:

class ViewController: UIViewController , UICollectionViewDelegate , UICollectionViewDataSource{

var imageArray = [UIImage(named:"1"),UIImage(named:"2"),UIImage(named:"3"),UIImage(named:"4"),UIImage(named:"5"),UIImage(named:"6"),UIImage(named:"7"),UIImage(named:"8"),]

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view.
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return imageArray.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "coffeeImageCollectionViewCell", for: indexPath)   as! coffeeImageCollectionViewCell
    cell.Imgimage.image = imageArray[indexPath.row]

    return cell
  }
}

这是在我的自定义CollectionViewCell类中,我将图像视图链接到了该类:

import UIKit

 class coffeeImageCollectionViewCell: UICollectionViewCell {

@IBOutlet weak var Imgimage: UIImageView!
}

2 个答案:

答案 0 :(得分:1)

您需要设置viewDidLoad

self.collectionView.delegate = self
self.collectionView.dataSource = self

创建此出口

@IBOutlet weak var collectionView: UICollectionView!

答案 1 :(得分:0)

我解决了。我使用的教程是2年前的,这个人正在使用版本3。我只是更改了“!”在“从”到“?”之后并添加了“?”单元格后(.image)。另外,我加了一个“!”返回单元格解开