Swift UIButton
Posted 向日葵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift UIButton相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
swift [Swift Notes]在学习Swift #Swift的同时收集笔记