美文网首页
Swift中使用Masonry

Swift中使用Masonry

作者: 我一不小心就 | 来源:发表于2019-01-28 16:28 被阅读0次

import UIKit
import Masonry

class ViewController: UIViewController {

    // var nameLbl:UILabel = UILabel.init(frame: CGRect(x: 60, y: 300, width: 100, height: 30))
    var nameLbl:UILabel = UILabel.init()
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        
        let testBtn:UIButton = UIButton(type: .custom)
        testBtn.frame = CGRect(x: 0, y: 600, width: 200.0, height: 30.0)
        testBtn.setTitle("登陆", for: .normal)
        testBtn.setTitleColor(UIColor.lightGray, for: .normal)
        testBtn.tag = 101
        //
        testBtn.addTarget(self, action: #selector(testActionMethod), for: .touchUpInside)
        
        // 带参数的按钮点击事件
        // testBtn.addTarget(self, action: #selector(testAction(testBtn:)), for: .touchUpInside)
        self.view.addSubview(testBtn)
        
        // 标签
        nameLbl.text = "名称"
        nameLbl.textColor = UIColor.blue
        nameLbl.textAlignment = .center
        self.view.addSubview(nameLbl)
        
        NSLog("000...")
    }
    
    @objc func testActionMethod(){
        print("no arguments.....")
    }
    
    @objc func testAction(testBtn:UIButton){
        print("testAction.... \(testBtn.tag)")
    }
    
    override func viewWillLayoutSubviews() {
        
        NSLog("aaaa...")
        
        nameLbl.mas_makeConstraints { (make) in
            make?.centerX.offset()
            make?.centerY.offset()
            make?.width.height()?.offset()(100)
        }
        
    }
}

相关文章

网友评论

      本文标题:Swift中使用Masonry

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