码迷,mamicode.com
首页 > 编程语言 > 详细

Swift UIButton

时间:2017-10-17 15:20:37      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:size   UI   elf   tco   tintcolor   int   button   ntc   cti   


        let button = UIButton(type:.system);
        button.frame = CGRect.init(x:100,y:150,width:160,height:30);
        button.setTitle("SwiftBtton", for: .normal);
        button.backgroundColor = UIColor.brown;
        button.titleLabel?.font = UIFont.systemFont(ofSize: 17);
        button.tintColor = UIColor.cyan;
        button.addTarget(self, action: #selector(buttonDidClick), for: .touchUpInside);
        self.view.addSubview(button);
        
    }
    func buttonDidClick() {
        print("按钮被点击了");
    }

Swift UIButton

标签:size   UI   elf   tco   tintcolor   int   button   ntc   cti   

原文地址:http://www.cnblogs.com/laolitou-ping/p/7680969.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!