In my AppDelegate.h file i written the following code
@interface iBountyHunterAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabcontroller;
}
@property (nonatomic,retain) IBOutlet UITabBarController *tabcontroller;
and in AppDelegate.h file I synthesize it.
@synthesize tabcontroller;
but in @synthesize line i get an error and the msg is: “MISSING CONTEXT FOR PROPERTY IMPLEMENTATION DECLARATION”
can anyone tell me how to solve it?
I suspect you have put the
@synthesizeoutside of your @implementation. It should look something like this