text Swift中Table View的示例代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Swift中Table View的示例代码相关的知识,希望对你有一定的参考价值。
import UIKit
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int {
return 10
}
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
let cell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "MyTestCell")
cell.text = "Row #\(indexPath.row)"
cell.detailTextLabel.text = "Subtitle #\(indexPath.row)"
return cell
}
}
以上是关于text Swift中Table View的示例代码的主要内容,如果未能解决你的问题,请参考以下文章
如何使用Swift添加Table View搜索框
ios 官网文档翻译—Create a Table View(swift)
为 UIViewController 设置 ViewController,使用 Table View,连接到 Swift 中的 Parse
Swift 给UITableView 写extension 时 报错 does not conform to protocol 'UITableViewDataSource'(示例代
Application windows are expected to have a root view controller at the end of application launch(示例代
Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE(示例代