现在我用 XCode4.2 开发 IOS 应用程序。我在应用程序运行时创建 UIButton。所以我的编码在这里:
- (IBAction)btnSync_Click:(id)sender {
float j=10.0;
for(int i=1;i<5;i++){
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(j, 170, 100.0, 50.0);
[button setTitle:[NSString stringWithFormat:@"btn%d",i] forState:UIControlStateNormal];
[button addTarget:self action:@selector(btn_Click:) forControlEvents:UIControlEventTouchUpInside];
[fra_btn addSubview:button];
j=j+110;
}
}
- (IBAction)btn_Click:(id)sender{
UIButton *btntmp=(UIButton*)sender;
NSLog(btntmp.titleLabel.text);
}
我想知道我还需要释放 fra_btn(View) 中的所有按钮吗?如果是,我该怎么做?我的项目是ARC项目。
最佳 Rgds, df