美文网首页Swift3.0
Swift3.0中$0的使用

Swift3.0中$0的使用

作者: JunShine | 来源:发表于2017-01-05 16:19 被阅读62次
class ViewController: UIViewController {

    let myView: UIView = {
        
        $0.backgroundColor = UIColor.red
        $0.frame = CGRect(x: 100, y: 100, width: 100, height: 100)
        return $0
    }(UIView())
    
    override func viewDidLoad() {
        super.viewDidLoad()

        view.addSubview(myView)
    
    }
}```
###可以看出在懒加载中的闭包中使用$0,可以省去创建一个变量,开辟空间的过程。




相关文章

网友评论

    本文标题:Swift3.0中$0的使用

    本文链接:https://www.haomeiwen.com/subject/mluzvttx.html