swift 懒加载 // 完整写法 lazy var labe = {()->UILabel in let l = UILabel() return l }() // 简单写法 lazy var label:UILabel = UILabel()