详解iOS App中UISwitch开关组件的基本创建及使用方法

UISwitch组件就是我们平时在iOS设置菜单中开到的那种左右滑动的开关按钮,当然我们在开发时可以进行更多的自定义,这里我们就来详解iOS App中UISwitch开关组件的基本创建及使用方法

一、第一种创建UISwitch组件的方法,在代码中动态创建。

1、打开Xcode, 新建项目Switch,选择Single View Application。

2、打开ViewController.m文件在viewDidLoad方法里添加代码:

复制代码 代码如下:

(void)viewDidLoad 

    [super viewDidLoad]; 
    UISwitch *switchButton = [[UISwitch alloc] initWithFrame:CGRectMake(50, 100, 20, 10)]; 
    [switchButton setOn:YES]; 
    [switchButton addTarget:self action:@selector(switchAction:) forControlEvents:UIControlEventValueChanged]; 
    [self.view addSubview:switchButton]; 

    // Do any additional setup after loading the view, typically from a nib. 

[switchButton addTarget:selfaction:@selector(switchAction:)forControlEvents:UIControlEventValueChanged];


代码中selector中的switchAction:需要我们自己实现,就是按下时接收到的事件。

记得把switchButton加到当前view,调用[self.viewaddSubview:switchButton];

3、监听UISwitch按下事件

实现代码如下:

复制代码 代码如下:

(void)switchAction:(id)sender 

    UISwitch *switchButton = (UISwitch*)sender; 
    BOOL isButtonOn = [switchButton isOn]; 
    if (isButtonOn) { 
        showSwitchValue.text = @"是"; 
    }else { 
        showSwitchValue.text = @"否"; 
    } 
}

showSwitchValue是我通过拖拽控件方法放到界面上的Label,方便显示效果

运行,效果:

二、通过拖拽方法使用UISwitch

1、往xib文件上拖拽一个UISwitch控件。

2、按alt+command + return键开启Assistant Editor模式,选中UISwitch控件,按住Control键,往ViewController.h拖拽

3、选Action方式

4、.m文件中实现switchAction 。刚才动态创建的时候也用到这个方法名称,可以先注释掉刚才的。

复制代码 代码如下:

(IBAction)switchAction:(id)sender { 
    UISwitch *switchButton = (UISwitch*)sender; 
    BOOL isButtonOn = [switchButton isOn]; 
    if (isButtonOn) { 
        showSwitchValue.text = @"是"; 
    }else { 
        showSwitchValue.text = @"否"; 
    } 

三、自定义UISwitch

1.使用类别扩展UISwitch。
如下:
 下面是UISwitch.h文件:

复制代码 代码如下:

#import

@interface UISwitch (tagged)
+ (UISwitch *) switchWithLeftText: (NSString *) tag1 andRight: (NSString *) tag2;
@property (nonatomic, readonly) UILabel *label1;
@property (nonatomic, readonly) UILabel *label2;
@end


UISwitch.m文件:
复制代码 代码如下:

#import "UISwitch-Extended.h"

#define TAG_OFFSET 900

@implementation UISwitch (tagged)
- (void) spelunkAndTag: (UIView *) aView withCount:(int *) count
{
 for (UIView *subview in [aView subviews])
 {
 if ([subview isKindOfClass:[UILabel class]])
 {
 *count += 1;
 [subview setTag:(TAG_OFFSET + *count)];
 }
 else
 [self spelunkAndTag:subview withCount:count];
 }
}

- (UILabel *) label1
{
 return (UILabel *) [self viewWithTag:TAG_OFFSET + 1];
}

- (UILabel *) label2
{
return (UILabel *) [self viewWithTag:TAG_OFFSET + 2];
}

+ (UISwitch *) switchWithLeftText: (NSString *) tag1 andRight: (NSString *) tag2
{
 UISwitch *switchView = [[UISwitch alloc] initWithFrame:CGRectZero];

int labelCount = 0;
[switchView spelunkAndTag:switchView withCount:&labelCount];

if (labelCount == 2)
{
[switchView.label1 setText:tag1];
[switchView.label2 setText:tag2];
}

return [switchView autorelease];
}

@end


2.还有一种方法,这种方法比较简单,但比较难懂,我不甚理解。
复制代码 代码如下:

UISwitch *isFooOrBar=[[UISwitch alloc] init];

((UILabel )[[[[[[isFooOrBar subviews] lastObject] subviews] objectAtIndex:2] subviews]objectAtIndex:0]).text = @"Foo";
((UILabel *)[[[[[[isFooOrBar subviews] lastObject] subviews] objectAtIndex:2] subviews]objectAtIndex:1]).text = @"Bar";*


四、一些常用方法
获得开关状态
复制代码 代码如下:

BOOL setting =  switchView.isOn;
NSLog(@"%d",setting);

设置开关状态 NO关闭状态,YES打开状态
复制代码 代码如下:

[switchView setOn:setting animated:YES];

设置开光的切换
复制代码 代码如下:

switchView.onTintColor = [UIColor orangeColor];

设置按钮的颜色
复制代码 代码如下:

switchView.thumbTintColor = [UIColor redColor];

开关控件边框的颜色
复制代码 代码如下:

switchView.tintColor = [UIColor purpleColor];

添加触发事件
复制代码 代码如下:

[switchView addTarget:self action:@selector(switchAction:) forControlEvents:UIControlEventValueChanged];

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

这篇文章主要为大家详细介绍了iOS开关按钮UISwitch控件,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
这篇文章主要介绍了iOS开发之手动布局子视图,从入门到精通帮助大家更好的开发iOS项目,感兴趣的小伙伴们可以参考一下
本文的内容主要是在IOS中实现日历翻页的动画,界面简单但效果很好,以后可以运用到app中,下面一起来看看。
最近在工程里看到很多不规范的使用,于是来写一篇博客来让不是很清楚的小朋友们,使用正确的规范开发ios,少埋点坑。
今天起为大家带来iOS动画特效合集之立方体翻转,APP如美女,动画如衣裳,赶紧为她披上漂亮的衣装吧!
现今已有越来越多的APP需要横向刷新的需求,而横向刷新加载的控件却寥寥无几,即使有也是集成起来非常的麻烦,恰巧最近项目中又用到了这个功能,所以干脆自己来造个轮子,方便大家使用。