iOS - Switches(切換/開關)


使用開關

開關用於開啟和關閉狀態之間切換。

 

重要的屬性

  • onImage

  • offImage

  • on

 

重要的方法

- (void)setOn:(BOOL)on animated:(BOOL)animated

 

新增自定義的方法addSwitch和switched:

-(IBAction)switched:(id)sender{
    NSLog(@"Switch current state %@", mySwitch.on ? @"On" : @"Off");
}
-(void)addSwitch{
    mySwitch = [[UISwitch alloc] init];
    [self.view addSubview:mySwitch];
    mySwitch.center = CGYiibaiMake(150, 200);
    [mySwitch addTarget:self action:@selector(switched:)
    forControlEvents:UIControlEventValueChanged];    
}

 

更新在 ViewController.m 中的 viewDidLoad 如下

(void)viewDidLoad
{
   [super viewDidLoad];
   [self addSwitch];
}

輸出

現在,當我們執行程式時,我們會得到下面的輸出。

iOS Tutorial

快速滑動開關的輸出如下。

iOS Tutorial