gpt4 book ai didi

ios - UITableView 显示一些行

转载 作者:行者123 更新时间:2023-11-29 00:59:04 25 4
gpt4 key购买 nike

我在 UIViewController 中遇到了 UITableView 的问题。我的表格显示了一些我不知道为什么的行。它应该显示所有行。

simulator Prototype

class TableViewController: UIViewController,UITableViewDelegate, UITableViewDataSource  {
let cellIdentifier = "testCell"

override func viewDidLoad() {
super.viewDidLoad()
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return 20
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! TableViewCell
cell.lableName.text = "Hello man"

return cell
}
}

最佳答案

如果你想要 hello man in 20 row.(All row)in cell for row at index path method 添加此行

cell.labelname.text = "Hello Man"

关于ios - UITableView 显示一些行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37247937/

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