1
作成したボタンをNSMutabledictionary
に追加しました。ちょうどNSDictionary
を繰り返し、ボタンを1つの変数に保存します。辞書からボタンを取得する
UIButton *word= [UIButton buttonWithType:UIButtonTypeRoundedRect];
.
.
.
[self.buttonsDict setObject:word forKey:[NSNumber numberWithInt:rownumber]];
for (int j = 0; j<self.buttonsDict; j++) {
int index = [self.buttonsDict objectForKey:rownumber];
}
インデックスではなく、辞書からボタンを取得するために使用するものを指定します。