尝试在桌面上放置标签,但收到的错误是我以前没见过的。其他不能分配属性错误问题似乎不符合我的情况所以在这里发布问题。当我通过Stack Overflow学习时,任何指针都会非常受欢迎。谢谢!
import UIKit
class SeventhViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
internal func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 15
}
internal func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as UITableViewCell
var newData = [String]()
newData = ["Impressions","Image Tapped","Description Tapped","Biography Tapped","Purchase Link Tapped","Added to Collection","Removed from Collection"]
//Programmatically create label
var impressionsLabel = UILabel(frame: CGRect(x: 280.0, y: 14.0, width: 300.0, height: 30.0))
impressionsLabel.text = newData[indexPath.row]
impressionsLabel.tag = 1
impressionsLabel.font = UIFont(name: "Impressions", size: 17.0)
impressionsLabel.textColor = UIColor.darkGray
cell.addSubview(impressionsLabel)
**cell.contentView.viewWithTag(1) = newData[indexPath.row]**
impressionsLabel.tag = 1
return cell
答案 0 :(得分:0)
错误在于以下行:
cell.contentView.viewWithTag(1) = newData[indexPath.row]
两个问题。 viewWithTag
会返回一个可选的UIView
。然后,您尝试将String
分配给UIView
。
假设标记为1
的视图为UILabel
,则需要以下内容:
if let label = cell.contentView.viewWithTag(1) as? UILabel {
label.text = newData[indexPath.row]
}
这可以安全地处理访问可能的nil视图(如果没有标记为1
的实际视图)并尝试将该视图转换为UILabel
(视图实际上不是一个UILabel
)。如果满足这些条件并且您实际获得了标签,那么您可以设置标签的text
属性。
与您的问题无关(在运行您的应用时会导致新问题),但在cellForRowAt
方法中声明和设置数据数组是没有意义的,硬编码是没有意义的您numberOfRowsInSection
方法中的具体计数。
正确的做法是使newData
成为视图控制器的属性并将其设置一次,而不是每次访问单元格时。然后在numberOfRowsInSection
中返回其计数。