Swift自定义tableview单元格没有我的图像属性?

时间:2016-06-28 05:45:18

标签: uitableview swift2 tableviewcell

我正在尝试按照本视频的指南创建自己的自定义tableView单元格

https://www.youtube.com/watch?v=EVJiprvRLoo

然而,当我在做cell.photo.image部分时,Xcode告诉我UITableViewCell没有会员'照片'

我忘了把东西连接到某个地方吗?

感谢帮助人员!

1 个答案:

答案 0 :(得分:1)

你的问题将得到解决。你的视频指南是正确的,但仔细观察直到结束。试试下面的代码。 uiimageview的照片属性不是uiview。

 class CustomCell: UITableViewCell {

    @IBOutlet weak var photo: UIImageView!
    @IBOutlet weak var name: UILabel!
    @IBOutlet weak var breed: UILabel!

              }
//   Next class 





  class Dog: UIViewController,UITableViewDelegate,UITableViewDataSource {

 func tableView(tableView: UITableView,numberOfRowsInSection section: Int)   -> Int {

        return Names.count
    }

  func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath:       NSIndexPath) -> UITableViewCell {

var cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! CustomCell

cell.photo.image = images[indexPath.row]