Swift 自定义 table 查看单元格未解析的标识符
Swift customize table view cell unresolved identifier
我想自定义一个 table 视图单元格,所以我创建了一个如下所示的新文件,并执行了 https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson7.html
中提到的必要步骤
DetailTableViewCell.swift:
import UIKit
class DetailTableViewCell: UITableViewCell {
@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var contentLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
但是我写var details =Detail()的时候会报Use of unresolved identifier 'Detail'.
为什么?我只是按照教程。
class CurrentViewController: UIViewController{
var details=[Detail]()
...
}
您没有定义 Detail
模型对象。
你必须先处理这个:
我想自定义一个 table 视图单元格,所以我创建了一个如下所示的新文件,并执行了 https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson7.html
中提到的必要步骤DetailTableViewCell.swift:
import UIKit
class DetailTableViewCell: UITableViewCell {
@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var contentLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
但是我写var details =Detail()的时候会报Use of unresolved identifier 'Detail'.
为什么?我只是按照教程。
class CurrentViewController: UIViewController{
var details=[Detail]()
...
}
您没有定义 Detail
模型对象。
你必须先处理这个: