2010年8月6日 星期五

iPhone 開發筆記02: 取得 UISwitch 的值, 顯示到 TextLabel 上

將 UISwitch 上的 Value Changed 事件, 連到以下的 switchOnOff 這個 IBAction:

- (IBAction) switchOnOff:(id)sender
{
UISwitch *switcher = (UISwitch *) sender;
switchLabel.text = [NSString stringWithFormat:@"%d", switcher.on];
}

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。