我正在尝试按照本视频的指南创建自己的自定义tableView单元格
https://www.youtube.com/watch?v=EVJiprvRLoo
然而,当我在做cell.photo.image部分时,Xcode告诉我UITableViewCell没有会员'照片'
我忘了把东西连接到某个地方吗?
感谢帮助人员!
答案 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]