所以这是我的代码:
for (int x = 1; x < 100; x++) {
int randomX = arc4random() %280;
int randomY = arc4random() %500;
UIButton *myButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[myButton setTitle:string forState:UIControlStateNormal];
myButton.frame = CGRectMake(randomX, randomY, 40.0, 40.0);
[myButton addTarget:self action:@selector(buttonUp) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:myButton];
放开时如何使按钮自行删除?
谢谢,波格丹