我有一个UITableViewController,它当前显示4个单元格,这些单元格将始终显示,并希望将它们组合在一起但是我无法弄清楚如何。我发现的资源仅在通过UIViewController或其他类似的东西插入标准UITableView时使用Interface Builder提供指令。如何以编程方式对它们进行分组?
这是我当前的UITableViewController类:
import UIKit
class SecondViewController: UITableViewController {
let Items = ["Altitude","Distance","Groundspeed"]
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.Items.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell:UITableViewCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as UITableViewCell
cell.textLabel?.text = self.Items[indexPath.row]
return cell
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
}
}
答案 0 :(得分:14)
表视图的样式在初始化时设置,以后不能修改,但您可以做的是创建一个具有所需分组样式的新表视图,并将其设置为ViewDidLoad中的表视图:
self.tableView = UITableView(frame: self.tableView.frame, style: .grouped)
您还应该使用表格中指定多个部分 numberOfSectionsInTableView(_ :)以及使用tableView(_:titleForHeaderInSection :)或tableView(_:titleForFooterInSection :)的每个标题。