I am getting this warning on the following line:
@synthesize labels;
Now, the rest of my declaration (in the .h
file) is as follows:
@interface Menus:SuperClass<Protocols>
{
...
UILabel **labels;
}
@property (nonatomic, retain) UILabel **labels;
Does anyone know why this is happening?