1

我已经完成了以下代码,用于以编程方式创建多个 UISwitches 并处理特定的开关。

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 选择所有单击时将所有 UISwitches 设置为 ON。如何?

4

2 回答 2

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];
}

只要确保标签是唯一的。

希望能帮助到你。

于 2012-05-21T11:25:14.167 回答
0

在那里使用这个东西,请以 100 或 1000 开头的标签号

-(void) selectAll {
for(int i=100;i<(100+3);i++){
UISwitch *refSwitch=[self.view viewWithTag:i];
refSwitch.on=YES;
}
}

这对你有用

于 2012-05-21T11:29:49.120 回答