特点
- 用到的时候才会加载 2.多次使用只会加载一次
class ViewController: UIViewController {
// lazy var names : [String] = ["why","lmj","lpf"]
lazy var names : [String] = {
let names = ["why","lmj","lpf"];
print("-----------")
return names;
}()
//lazy var btn : UIButton = UIButton();
lazy var btn : UIButton = {
let btn = UIButton()
return btn
}()
override func viewDidLoad() {
super.viewDidLoad()
}
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
print("这里是我调用了数据")
print(names.count)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
网友评论