Вы хотите сказать, что хотите получить переменные с именами, такими как btn_0, btn_1 и т. Д.?
Нет, вы не можете этого сделать.Вы могли бы быть лучше с чем-то вроде этого:
NSMutableArray *buttons = [[NSMutableArray alloc] initWithCapacity:8];
for(int i=0; i<8; i++) {
UIButton *b = [[UIButton alloc] initWithFrame:...];
[butttons addObject:b];
[b release];
}
// Now you can access the buttons array with indices, e.g:
UIButton *b = [buttons objectAtIndex:4];