Swift UIButton用法

Swift - 按钮(UIButton)的用法

2015-01-15 16:02发布:hangge浏览:23747

1,按钮的创建

(1)按钮有下面四种类型:

UIButtonType.ContactAdd:前面带“+”图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果

UIButtonType.DetailDisclosure:前面带“!”图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果

UIButtonType.System:前面不带图标,默认文字颜色为蓝色,有触摸时的高亮效果

UIButtonType.Custom:定制按钮,前面不带图标,默认文字颜色为白色,无触摸时的高亮效果

UIButtonType.InfoDark:为感叹号“!”圆形按钮

UIButtonType.InfoLight:为感叹号“!”圆形按钮


1

2

3

4

5

6

7

//创建一个ContactAdd类型的按钮

let button:UIButton UIButton(type:.ContactAdd)

//设置按钮位置和大小

button.frame=CGRectMake(10,
150, 100, 30)

//设置按钮文字

button.setTitle("按钮",
forState:
UIControlState.Normal)

self.view.addSubview(button);

(2)对于Custom定制类型按钮,代码可简化为:


1

let button
UIButton(frame:CGRectMake(10,
150, 100, 30))

2,按钮的文字设置


1

2

3

button.setTitle("普通状态",
forState:
UIControlState.Normal//普通状态下的文字

button.setTitle("触摸状态",
forState:
UIControlState.Highlighted//触摸状态下的文字

button.setTitle("禁用状态",
forState:
UIControlState.Disabled//禁用状态下的文字

3,按钮文字颜色的设置


1

2

3

button.setTitleColor(UIColor.blackColor(),forState:
.
Normal//普通状态下文字的颜色

button.setTitleColor(UIColor.greenColor(),forState:
.
Highlighted//触摸状态下文字的颜色

button.setTitleColor(UIColor.grayColor(),forState:
.
Disabled//禁用状态下文字的颜色

4,按钮文字阴影颜色的设置


1

2

3

button.setTitleShadowColor(UIColor.greenColor(),forState:.Normal//普通状态下文字阴影的颜色

button.setTitleShadowColor(UIColor.yellowColor(),forState:.Highlighted//普通状态下文字阴影的颜色

button.setTitleShadowColor(UIColor.grayColor(),forState:.Disabled//普通状态下文字阴影的颜色

5,按钮背景颜色设置


1

button.backgroundColor=UIColor.blackColor()

6,按钮文字图标的设置


1

2

3

button.setImage(UIImage(named:"icon1"),forState:.Normal)  //设置图标

button.adjustsImageWhenHighlighted=false //使触摸模式下按钮也不会变暗

button.adjustsImageWhenDisabled=false //使禁用模式下按钮也不会变暗

7,设置按钮背景图片


1

button.setBackgroundImage(UIImage(named:"background1"),forState:.Normal)

8,按钮触摸点击事件响应


1

2

3

4

5

6

7

8

9

10

11

//不传递触摸对象(即点击的按钮)

button.addTarget(self,action:#selector(tapped),forControlEvents:.TouchUpInside)

func tapped(){

    print("tapped")

}

//传递触摸对象(即点击的按钮),需要在定义action参数时,方法名称后面带上冒号

button.addTarget(self,action:#selector(tapped(_:)),forControlEvents:.TouchUpInside)

func tapped(button:UIButton){

    print(button.titleForState(.Normal))

时间: 2024-10-27 19:13:23

Swift UIButton用法的相关文章

iOS开发系列之一 - UIButton 用法小结

// 初始化按钮并设置类型 UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect]; // 能够定义的UIButton类型有以下6种: // typedef enum { // UIButtonTypeCustom = 0, 自定义风格 // UIButtonTypeRoundedRect, 圆角矩形 // UIButtonTypeDetailDisclosure, 蓝色小箭头按钮,主要做详细说明用 // UIButto

swift基本用法-数组array

数组简单用法 //------------------------------------------------------------------------------ // 1. 数组定义 // 1> 使用[]可以快速定义数组,每一个数组元素使用 , 分隔 // 2> 数组中的数据元素可以是不同类型 var array = ["hello", "swift", 1, 1.2] //---------------------------------

swift基本用法-for循环遍历,遍历字典,循环生成数组

// Playground - noun: a place where people can play import UIKit //------------------------------------------------------------------------------ // 1. for // 传统的for循环方式在swift中同样支持 var num = 0 for(var i = 0; i < 10 ; i++) { num += i } num //---------

IOS UIButton用法详解

这段代码动态的创建了一个UIButton,并且把相关常用的属性都列举了.希望对大家有用.   //这里创建一个圆角矩形的按钮UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect]; // 能够定义的button类型有以下6种,// typedef enum {// UIButtonTypeCustom = 0, 自定义风格// UIButtonTypeRoundedRect, 圆角矩形 // UIButtonTy

swift基本用法-var/let定义变量和常量

// Playground - noun: a place where people can play import UIKit //------------------------------------------------------------------------------ // 1. 行打印一个字符串 println("Hello, World!") //---------------------------------------------------------

swift基本用法-字典NSDictionary的定义,修改键值,删除/添加键值

// Playground - noun: a place where people can play import UIKit //------------------------------------------------------------------------------ // 1. 定义固定格式的字典 // dict1的所有"键值"类型一致(都是字符串) var dict1 = ["name": "mary", "a

swift基本用法-switch用法

// Playground - noun: a place where people can play import UIKit //------------------------------------------------------------------------------ // 1. 基本使用 // switch 与OC的区别: // 1> 不需要写break // 2> 每个分支条件中的指令不能不写 // 3> case如果取多值时,可以使用","

swift 的 一些基本的用法

学了写 swift ,这里简单的列出 swift 的用法 //传统的 for 循环的写法 for var i = 0;i<10;i++ { print(i) } //..i 的值为0~9,不包含10 for i in 0..<10 { print(i) } //...i 的值为0到10 for i in 0...10 { print(i) } 关于 switch 的用法 var num = 10 /* 不需要 break */ switch num { case 1: print("

快速发展的Swift是否将淘汰Objective-C?

随便拉上一个果粉说说这一年来苹果公司的成就,Apple Watch肯定排第一,再下来是iPhone破销量纪录及苹果30亿美元收购Beats Electronics,消息灵通的人说不定还会提到Apple Car.同样的问题摆在iOS开发者面前的话,去年苹果公司推出的新一代编程语言,诸多铁杆果粉早有耳闻的Swift必然在排行榜之列. 而如今,尽管距离2015年苹果全球开发者大会(WWDC 2015)开幕还有好几个小时,却已经有不少的参会开发者在旧金山的Moscone West会场外排队等候入场.在今