Is this possible?
I have variables
IBOutlet UIButton * myButton1;
IBOutlet UIButton * myButton2;
IBOutlet UIButton * myButton3
....
IBOutlet UIButton * myButton(n)
if I can refer to them in the cycle like for so they change title's? or other property
Update
for (int i=0; i<n;i++) {
[mybutton[n] setTitle:@"123" forState:UIControlStateNormal];
}
like this, I understand code above not worked but can in objective-c do like this??