您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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 可以放在一起
關于“Swift中tableView怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。