gpt4 book ai didi

ios - 类型 'UITableViewCell' 的值没有成员 'postImageView'

转载 作者:行者123 更新时间:2023-11-28 16:11:20 27 4
gpt4 key购买 nike

iOS 编程新手,我收到以下错误,我收到了 3 个单独的项目,但解决一个将解决所有问题。

我收到以下错误

“UITableViewCell”类型的值没有成员“postImageView”

// return how may records in a table
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.rssRecordList.count
}

// return cell
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> NewsTableViewCell {

// collect reusable cell
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)

// find record for current cell
let thisRecord : RssRecord = self.rssRecordList[(indexPath as NSIndexPath).row]

// set value for main title and detail tect
cell.postImageView.image = UIImage(thisRecord.image)
cell.postTitleLabel.text = thisRecord.title
cell.authorLabel.text = thisRecord.storyDate


// return cell
return cell as! NewsTableViewCell
}

最佳答案

问题是您的单元格对象是 UITableViewCell 而不是 NewsTableViewCell。您需要使实际上具有这些属性的 NewsTableViewCell 出队。

类似于:

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

关于ios - 类型 'UITableViewCell' 的值没有成员 'postImageView',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39518413/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com