swift UITableView - Swift
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift UITableView - Swift相关的知识,希望对你有一定的参考价值。
class ViewControllerTableView: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return numberOfRowsInSection //(count something)
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "reuseCell", for: indexPath)
//reuse cell goes in cell Identifier
cell.textLabel!.text = textForTableCell //string
return cell
}
以上是关于swift UITableView - Swift的主要内容,如果未能解决你的问题,请参考以下文章
swift UITableView - Swift
swift 的UITableView + Extension.swift
Swift - 无法向 UITableView 添加数据
UITableView 使用 Swift
UITableView 背景颜色 Swift
多节 UITableView (swift)