标签: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("按钮被点击了");
}
标签:size UI elf tco tintcolor int button ntc cti
原文地址:http://www.cnblogs.com/laolitou-ping/p/7680969.html