我已经完成了以下代码,用于以编程方式创建多个UISwitch并处理特定的切换。
for (int i =0; i < 3; i++) {
CGRect frame = CGRectMake(x, y, height, width);
UISwitch *switchControl = [[UISwitch alloc] initWithFrame:frame];
//add tag as index
switchControl.tag = i;
[switchControl addTarget:self action:@selector(flip:) forControlEvents: UIControlEventValueChanged];
[switchControl setBackgroundColor:[UIColor clearColor]];
[self.view addSubview:switchControl];
y= y+50.0;
}
- (IBAction) flip: (id) sender {
UISwitch *onoff = (UISwitch *) sender;
NSLog(@"no.%d %@",onoff.tag, onoff.on ? @"On" : @"Off");
//use onoff.tag , you know which switch you got
}
执行此代码后,我想在UIButton选择全部单击时设置所有UISwitch。怎么样?
答案 0 :(得分:2)
要将它们全部ON
设置,我会将它们保存在一个数组中以便于访问。然后你可以这样做:
for (int i = 0; i < [switchArray count]; i++) {
UISwitch *sw = (UISwitch *)[switchArray objectAtIndex:i];
[sw setOn:YES];
}
您也可以这样做:
for (int i = 0; i < 3; i++) {
UISwitch *sw = (UISwitch *)[self.view viewWithTag:i];
[sw setOn:YES];
}
确保标签是唯一的。
希望它有所帮助。
答案 1 :(得分:0)
在那里使用这个东西 请以100或1000开始标记号
-(void) selectAll {
for(int i=100;i<(100+3);i++){
UISwitch *refSwitch=[self.view viewWithTag:i];
refSwitch.on=YES;
}
}
这对你有用