iOS:如何处理使用一个iBAction动态创建的多个按钮?

时间:2015-05-12 06:41:29

标签: ios uibutton xcode6 ibaction

我已根据我的网络服务响应以编程方式创建了收音机和复选框按钮,其中按钮数量各不相同。

以下是创建这些按钮的代码:

for(int j = 0; j < nintOptionCount; j++)
    {
        UILabel * lblOption =  [[UILabel alloc] initWithFrame: CGRectMake(50, yLabel, 250, 21)];
        //lblOption.backgroundColor = [UIColor yellowColor];
        lblOption.text = [arrmOptionName objectAtIndex:j];
        lblOption.textColor = [UIColor blackColor];
        lblOption.font = [UIFont systemFontOfSize:14.0f];
        [viewDetail addSubview:lblOption];            


        intOptionId = [[arrmOptionId objectAtIndex:j] intValue];

        if (intEventChoice == 1)
        {
            btnRadio = [[UIButton alloc]initWithFrame:CGRectMake(5, yLabel, 22, 22)];
            [btnRadio addTarget:self action:@selector(radioButtonPress:) forControlEvents:UIControlEventTouchUpInside];
            [btnRadio setImage:[UIImage imageNamed:@"btn_radio.png"] forState:UIControlStateNormal];
            [btnRadio setTag:intOptionId];
            [btnRadio setTitle:[NSString stringWithFormat:@"radio%d%d",intOptionId,intParamId] forState:UIControlStateNormal];
            [viewDetail addSubview:btnRadio];
        }
        else
        {
            btnCheckBox = [[UIButton alloc]initWithFrame:CGRectMake(5, yLabel, 22, 22)];
            [btnCheckBox setImage:[UIImage imageNamed:@"btn_checkbox.png"] forState:UIControlStateNormal];
            [btnCheckBox addTarget:self action:@selector(checkBoxButtonPress:) forControlEvents:UIControlEventTouchUpInside];
            [btnCheckBox setTag:intOptionId];
            [btnCheckBox setTitle:[NSString stringWithFormat:@"check%d,%d",intOptionId,intParamId] forState:UIControlStateNormal];
            [viewDetail addSubview:btnCheckBox];
        }

        yLabel = yLabel+ 21+10;
    }

所以,我的问题是如何处理按钮以编程方式创建的按钮的操作?以及如何处理按钮的选择和取消选择,因为这些按钮的工作方式类似于单选按钮和复选框按钮。 在单选按钮的情况下,如果我选择一个,则需要取消选择其他按钮,如果选中复选框,则需要选中和取消选中复选框。

我已经尝试过将标签设置为按钮,但它没有像我预期的那样正常工作。

请给我一些解决方案。 提前谢谢。

2 个答案:

答案 0 :(得分:0)

你必须在for循环中声明你的按钮。所以每次循环运行一个新的按钮实例都会生成。

创建数组以保存按钮。

NSMuttableDictionary *btnRadioDictionary = [NSMutableDictionary new];
NSMuttableDictionary *btnCheckBoxDictionary= [NSMutableDictionary new];

为循环内的每个按钮设置标记

for(int j = 0; j < nintOptionCount; j++)
{
UIButton *btnRadio;
UIButton *btnCheckBox;
// your other code


  btnRadio.tag = j; 
  btnCheckBox.tag = j;

// save buttons to an array
[btnRadioDictionary setValue:btnRadio forKey:j];
[btnCheckBoxDictionary setValue:btnCheckBox forKey:j];
}

并确定在IBAction中使用标签点击的按钮

 -(IBAction) radioButtonPress:(id)sender 
 {
   // Write code Deselect all button here
   for(NSString *key in btnRadioDictionary)
   {
    UIButton *button =[btnRadioDictionary objectForKey:key];
    [button setImage:[UIImage imageNamed:@"btn_radio.png"] forState:UIControlStateNormal];
   }
   // Select required button

    UIButton *button =[btnRadioDictionary objectForKey:[sender tag]];
    [button setImage:[UIImage imageNamed:SELECTED_IMAGE_FOR_RADIO_BUTTON] forState:UIControlStateNormal];

   //Write separate action for each button if required.

   switch ([sender tag]) {
    case 0:

        break;
    case 1:

        break;
    case 2:

        break;
        /*
        .................
        */
    default:
        break;
   }
}

答案 1 :(得分:0)

您应该从数组和词典或自定义类创建数据结构,以允许您表示按钮组,其类型和当前选择状态。此数据结构可以直接链接到按钮,以便在进行更新时,您可以迭代组中的按钮以更新它们。

使用tag是获取所选按钮信息的一种作弊方式,但它既便宜又方便。按钮子类也很难。另一种方法是使用associated objects为每个按钮提供对数据结构部分的弱引用,这样您就可以在选择后直接进入。