我已经以编程方式设计了tableView
和tableViewCell
,而没有使用故事板。 viewDidLoad()
中的ViewController
看起来像这样:
tableView.delegate = self
tableView.dataSource = self
tableView.register(TicketsTableViewCell.self,forCellReuseIdentifier:cellReuseIdentifier)
tableView = UITableView(frame: UIScreen.main.bounds, style: .plain)
self.view.addSubview(tableView)
我的tableViewCell
看起来像这样:
class TicketsTableViewCell: UITableViewCell {
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
//Other View related stuff
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override func layoutSubviews() {
super.layoutSubviews()
}
问题是,当我运行它时,我能够看到tableView
,但不能看到细胞。此外,当我在cellForRowAt:
添加断点时,它不会被调用。我做错了什么?我是否在使用重用标识符时出错?
提前谢谢。
答案 0 :(得分:2)
问题首先是您设置delegate
datasource
tableView
之后,您正在使用行tableView
重新初始化tableView = UITableView(frame: UIScreen.main.bounds, style: .plain)
,先行,然后设置delegate
和datasource
并注册单元格。
tableView = UITableView(frame: UIScreen.main.bounds, style: .plain)
tableView.delegate = self
tableView.dataSource = self
tableView.register(TicketsTableViewCell.self, forCellReuseIdentifier: cellReuseIdentifier)
self.view.addSubview(tableView)
答案 1 :(得分:0)
尝试这样可能对您有所帮助
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource
{
var tableView : UITableView!
override func viewDidLoad() {
super.viewDidLoad()
self.view.backgroundColor = UIColor.whiteColor()
self.setUpTableView()
}
func setUpTableView()
{
// Create only one table view.
tableView = UITableView(frame: CGRectMake(self.view.frame.size.width / 10, self.view.frame.size.height / 2, self.view.frame.size.width - self.view.frame.size.width / 5, self.view.frame.size.height / 2 - 20), style: UITableViewStyle.Grouped)
tableView.dataSource = self
tableView.delegate = self
tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
tableView.layer.cornerRadius = 10
tableView.layer.borderColor = UIColor.blackColor().CGColor
tableView.layer.borderWidth = 2
self.view.addSubview(tableView)
}
//table view data source
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 3
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell : UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell
cell.textLabel?.text = "test"
cell.textLabel?.numberOfLines = 0
return cell
}
}