0

可能重复:
更改 UISWitch 的标签

如何在 ios6 xcode 4.5 中使用是/否创建 uiswitch。尝试自定义开关但未达到结果。任何帮助将不胜感激。在此先感谢。

4

1 回答 1

1

制作一个 UISwitch 控件。然后添加一个侦听控件的 ValueChanged 的​​操作。请记住在正确的位置将 UISwitch 添加到您的视图中,这里我只是进行 40 x 40 切换。

UISwitch *switchControl = [[UISwitch alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
[switchControl addTarget:self action:@selector(switchTapped:) forControlEvents:UIControlEventValueChanged];

在 switchTappedMethod 中,您可以找到具有此值的状态:

-(void) switchTapped: (id) sender {
UISwitch *switchControl = (UISwitch*) sender;
BOOL value = switchControl.isOn;
}
于 2012-10-23T11:39:07.763 回答