SwiftiOS开发

Swift UITableView

2017-06-09  本文已影响86人  isletn

UITableView在Swift中的使用

Swift是苹果在2014年WWDC上发布的新开发语言,至今已经有3年的历史,趋于成熟。之前因为种种原因一直没有上手,现在整天无所事事,就想着不如做点什么吧。OK,我们从UITableView开始学习Swift, 基础语法部分看官方文档就行了,看不懂?下面放中文链接。

创建UITableView, 我们有两种方式可以选择:Storyboard 与 纯代码,让我们一一介绍吧。


Storyboard创建UITableView

给�TableView添加Cell .png Cell标识.png image.png
class MyViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
}

纯代码创建UITableView

// 懒加载
    lazy var zTableView: UITableView = {
        let tableView = UITableView(frame: CGRect(x: 0, y: 0, width: self.view.frame.width, height: self.view.frame.height - 64 - 49), style: UITableViewStyle.plain)
        tableView.delegate = self
        tableView.dataSource = self
        tableView.rowHeight = 44
        return tableView
    }()
class MyViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
}
//Mark - UITableIView DataSource
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 20
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell: UITableViewCell = UITableViewCell.init(style: UITableViewCellStyle.subtitle, reuseIdentifier: "Cell")
        cell.textLabel!.text = "ABCDEFG"
        return cell
    }
override func viewDidLoad() {
        super.viewDidLoad()
        self.view .addSubview(zTableView)
    }

OK,大功告成。运行一下:

image.png

学习资料,欢迎补充。
Swift学习资料
The Swift Programming Language

上一篇 下一篇

猜你喜欢

热点阅读