Swift - 按钮(UIButton)的用法
2016-09-24更新:文章代码现已升级到Swift3
1,按钮的创建
(1)按钮有下面四种类型:
(2)对于Custom定制类型按钮,代码可简化为:
1
1,按钮的创建
(1)按钮有下面四种类型:
UIButtonType.infoDark:为感叹号“!”圆形按钮
UIButtonType.infoLight:为感叹号“!”圆形按钮
(注意:自ios7起,infoDark、infoLight、detailDisclosure效果都是一样的)
1
2
3
4
5
6
7
|
//创建一个ContactAdd类型的按钮
let
button:
UIButton
=
(type:.contactAdd)
//设置按钮位置和大小
button.frame =
CGRect
(x:10,y:150,width:100,height:30)
//设置按钮文字
button.setTitle(
"按钮"
,
for
:.normal)
self
.view.addSubview(button)
|
button =
UIButton
(frame:
CGRect
|