UIButtons
プログラムで作成してから、これらUIButtons
をに保存しNSMutableArray
ます。これらUIButtons
はすべて、タイトルとしていくつかのテキストを持っています。これらのアウトレットはありませんUIButtons
。ここで、いくつかをタッチまたはクリックしたときに、のタイトルUIButton
を割り当てたいと思います。しかし、私にとっての問題はこれです:どうすればこれらの関数を実行できますか。プログラムで作成したので、これらにもアウトレットがありません。ボタンを作成するための私のコードは次のとおりです。UIlabel
UIButton
UIButtons
UIButtons
UIButtons
saveBtn = [[NSMutableArray alloc] init];
for (int i=0; i<30; i++) {
if (btnn>8) {
UIButton *btn = [UIButton
buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(200.0 , spacey, 30.0, 30.0);
int idx;
idx = arc4random()%[arr count];
NSString* titre1 = [arr objectAtIndex:idx];
[btn setTitle:titre1 forState:UIControlStateNormal];
spacey=spacey+30;
spacex = 80;
btnn = 0;
}
else {
btnn++ ;
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(spacex, spacey, 30.0, 30.0);
int idx;
idx = arc4random()%[arr count];
NSString* titre1 = [arr objectAtIndex:idx];
[btn setTitle:titre1 forState:UIControlStateNormal];
spacex = spacex + 30;
[saveBtn addObject:btn];
[self.view addSubview:btn];
}
}
誰でも私にこれらのアクションを実行する方法を教えてくださいNSMutableArray
UIButtons
。