gpt4 book ai didi

ios - 将标题添加到 TableViewController

转载 作者:可可西里 更新时间:2023-11-01 00:07:13 29 4
gpt4 key购买 nike

我想知道如何为我的 swift 项目添加一个简单的标题。我在表格 View 中列出了学生,只想在列表上方的中心添加一个标题,上面写着“学生”,但我一辈子都弄不明白。每次我尝试添加任何东西时,它要么妨碍运营商设置,要么不出现。他是我的代码,除了一个尝试的标题 block 。

class StudentRosterTableViewController: UITableViewController {

var studentsList = [Dictionary<String, String>]()

override func viewDidLoad() {
super.viewDidLoad()

let studentRoster = ClassRosterModel()
studentsList = studentRoster.studentRoster
}

// MARK: - Table view data source
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return studentsList.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("StudentCell", forIndexPath: indexPath)

// Configure the cell...
cell.textLabel!.text = studentsList[indexPath.row]["name"]
cell.detailTextLabel!.text = studentsList[indexPath.row]["number"]

return cell
}

最佳答案

如果您正在创建 UITableViewController 没有 IB( Storyboard)

class StudentRosterTableViewController: UITableViewController {
init() {
super.init(style: .Plain)
self.title = "StudentRoster"
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}

通过 Storyboard找到 View Controller 部分并在那里输入您的标题。

enter image description here

关于ios - 将标题添加到 TableViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37634216/

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