0

我是 iOS 开发的新手。我正在创建一个包含一个按钮的应用程序,该按钮的作用类似于添加按钮。如果我单击该按钮,我想创建一组三个按钮。当我单击添加按钮时,每次这些按钮还想在上一个按钮旁边创建。我需要一个想法或示例代码。这是我的代码:

-(void) addBtnAct
{

    [self.view addSubview:sizeDropDownBtn];
    deleteBtn.hidden=YES;
    [sizeDropDownBtn addSubview:sizeDropDownBtnLbl];
    [self.view addSubview:weightDropDownBtn];
    [weightDropDownBtn addSubview:weightDropDownBtnLbl];
    [self.view addSubview:quantityTxtFld];
    [quantityTxtFld addSubview:quantityLbl];
    sizeDropDownBtn.frame = CGRectMake(10, 190, 86, 40);
    weightDropDownBtn.frame = CGRectMake(110, 190, 86, 40);
    quantityTxtFld.frame = CGRectMake(220, 190, 86, 40);
    quantityLbl.frame = CGRectMake(10, 12, 100, 15);
    sizeDropDownBtnLbl.frame = CGRectMake(20, 12, 100, 15);
    weightDropDownBtnLbl.frame = CGRectMake(10,12, 100, 15);

对不起,我的英语不好。谢谢你。

4

2 回答 2

1

嗨,请尝试以下代码:

int x=10;
int y=10;

for(int i=0;i<3;i++)
{

  CGRect frame = CGRectMake(10, y, 280, 40);
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = frame;
        button.tag=i;
        [button setTitle:(NSString *)@"new button" forState:(UIControlState)UIControlStateNormal];
        [button addTarget:self action:@selector(buttonTapped:) forControlEvents:UIControlEventTouchUpInside];
        [button setBackgroundImage:[UIImage imageNamed:@"temp.png"] forState:UIControlStateNormal];
        [self.view addSubview:button];
y+=45;
}

希望此代码对您有所帮助。

于 2013-08-08T10:30:29.917 回答
0

然后为此,您可以简单地在 UIButton 的方法中使用循环语句。在循环中根据 x 和 y 坐标添加按钮。每次循环执行时不断更改 x 和 y 坐标。这将防止它们相互重叠。

于 2013-08-08T09:59:21.967 回答