- iOS 教程
- iOS 简介
- iOS环境搭建
- Objective-C 简介
- 创建第一款iPhone应用程序
- iOS操作(action)和输出口(Outlet)
- iOS - 委托(Delegates)
- 什么是UI元素?
- IOS加速度传感器(accelerometer)
- IOS通用应用程序
- IOS相机管理
- IOS定位操作
- IOS SQLite数据库
- IOS发送电子邮件
- IOS音频和视频(Audio & Video)
- IOS文件处理
- IOS地图开发
- IOS应用内购买
- IOS iAD整合
- IOS GameKit
- IOS 故事板(Storyboards)
- IOS自动布局
- IOS-Twitter和Facebook
- IOS内存管理
- IOS应用程序调试
IOS开关的使用
IOS开关的使用
开关用于打开和关闭状态之间的切换。
重要的属性
- onImage
- offImage
- on
重要的方法
- (void)setOn:(BOOL)on animated:(BOOL)animated
添加自定义方法 addSwitch 和开关
-(IBAction)switched:(id)sender{ NSLog(@"Switch current state %@", mySwitch.on ? @"On" : @"Off"); } -(void)addSwitch{ mySwitch = [[UISwitch alloc] init]; [self.view addSubview:mySwitch]; mySwitch.center = CGPointMake(150, 200); [mySwitch addTarget:self action:@selector(switched:) forControlEvents:UIControlEventValueChanged]; }
在 ViewController.m 中修改 viewDidLoad,如下所示
(void)viewDidLoad { [super viewDidLoad]; [self addSwitch]; }
输出
现在当我们运行该应用程序我们会看到下面的输出
向右滑动开关输出如下所示
关注微信小程序
扫描二维码
程序员编程王