Quote:
Originally Posted by waynechiu
I am trying to define an array of IBOutlet UIButton but it fail.
IBOutlet UIButton *myButton[3];
@property (nonatomic, retain) UIButton **myButton;
are OK. Don't have any compiler error but
@synthesize myButton; give me an error and also I don't see the myButton in the File's Owner of Interface Builder.
|
I'm not sure if it should work or not, but you would need to synthesize *(myButton), *(myButton+1) and *(myButton+2).