在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
懒加载的介绍
懒加载的使用
import UIKit class ViewController: UIViewController { lazy var names : [String] = { print("------") return ["why", "yz", "lmj"] }() override func viewDidLoad() { super.viewDidLoad() } override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) { _ = names.count _ = names.count _ = names.count _ = names.count _ = names.count _ = names.count } } import UIKit class ViewController: UIViewController { // MARK:- 懒加载的属性 /// tableView的属性 lazy var tableView : UITableView = UITableView() // MARK:- 系统回调函数 override func viewDidLoad() { super.viewDidLoad() setupUI() } } // MARK:- 设置UI界面相关 extension ViewController { /// 设置UI界面 func setupUI() { // 0.将tableView添加到控制器的View中 view.addSubview(tableView) // 1.设置tableView的frame tableView.frame = view.bounds // 2.设置数据源 tableView.dataSource = self // 3.设置代理 tableView.delegate = self } } // MARK:- tableView的数据源和代理方法:1:设置代理多个代理用,隔开 2:相当于oc的#pragma:// MARK:- 2:若是没有介词,则用下划线来表示:_ tableView // extension类似OC的category,也是只能扩充方法,不能扩充属性 extension ViewController : UITableViewDataSource, UITableViewDelegate{ func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 20 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { // 1.创建cell: let CellID = "CellID" var cell = tableView.dequeueReusableCell(withIdentifier: CellID) if cell == nil { // 在swift中使用枚举: 1> 枚举类型.具体的类型 2> .具体的类型 cell = UITableViewCell(style: .default, reuseIdentifier: CellID) } // 2.给cell设置数据:cell为可选类型,从缓存池中取出的cell可为空,所以为可选类型,最后返回cell的时候要进行强制解包,此时已经保证了可选类型不为空,若为空强制解包会为空 cell?.textLabel?.text = "测试数据:\((indexPath as NSIndexPath).row)" // 3.返回cell return cell! } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { print("点击了:\((indexPath as NSIndexPath).row)") } }
|
请发表评论