Je veux faire 11 boutons spécifiés ci-dessous commander avec 2 pour les boucles, c'est une matrice mais pour 11 boutons.comment faire 11 bouton dans la matrice
for (int i = 1; i <= 2; i++) {
for (int k = 1; k <= 6; k++) {
j++;
NSString *key = [NSString stringWithFormat:@"Color%d",j];
UIColor *color = [dict objectForKey:key];
ColorBtn *colorBtn = [UIButton buttonWithType:UIButtonTypeCustom];
colorBtn.frame = CGRectMake(4+(startPointX*k), 320+(startPointY*i), 38, 37);
colorBtn.backgroundColor = color;
colorBtn.tag = j;
[colorBtn setImage:[UIImage imageNamed:@"image.png"] forState:UIControlStateNormal];
[colorBtn addTarget:self action:@selector(SetUIColor:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:colorBtn];
}
}
[][][][][][]
[][][][][]
-1: Quelle langue? Vous avez 4 étiquettes de langues complètement différentes sur cette question. –
Cette boucle s'exécute 12 (6 * 2) fois. – pmg
@Binary: l'extrait de code ressemble à objc. J'ai repensé la question un peu. – JustSid