21.Swift中tableView的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了21.Swift中tableView的使用相关的知识,希望对你有一定的参考价值。
// 遵守协议的方式,直接在继承的父类后跟,+协议即可
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// 添加tableView的控件
let tableView = UITableView()
tableView.frame = self.view.bounds
self.view.addSubview(tableView)
// 设置数据源,设置数据
tableView.dataSource = self
tableView.delegate = self
}
}
// 相当于OC中的category
extension ViewController : UITableViewDataSource
{
// MARK:- 实现数据源方法
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 ID : String = "Cell"
var cell = tableView.dequeueReusableCellWithIdentifier(ID)
if cell == nil {
cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: ID)
}
cell?.textLabel?.text = "测试数据:\(indexPath.row)"
return cell!
}
}
extension ViewController : UITableViewDelegate
{
// MARK:- 实现代理方法
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print(indexPath.row)
}
}
// UITableViewDataSource和UITableViewDelegate 可以放在一起
以上是关于21.Swift中tableView的使用的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 NSMutableDictionary 连接 Tableview 和 View Controller?
如何在 Swift 中的 View 中控制 TableView
如何在 Swift 中的 tableview 之间显示单独的 View(box)
如何在ios中创建没有tableview和collection view的行