如何在ipad应用程序中使用for循环生成按钮?

时间:2011-04-23 11:30:33

标签: iphone objective-c cocoa-touch ipad

我想使用for循环生成按钮。

这样的事情:

button[] button = new button[10];
for(i=0;i<20;i++)
{
button[i].text = "some text";
}

有人可以建议一种方法吗?

1 个答案:

答案 0 :(得分:1)

for (int i=0; i < 20; i++) {
    UIButton *button = [UIButton buttonWithType:...];
    button.frame = CGRectMake(...);
    [self.view addSubview:button];
}