詳解iOS App中UISwitch開關組件的基本建立及使用方法_IOS

來源:互聯網
上載者:User

一、第一種建立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];

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.