在我AppDelegate.h文件我寫了下面的代碼錯誤:@synthesize
@interface iBountyHunterAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabcontroller;
}
@property (nonatomic,retain) IBOutlet UITabBarController *tabcontroller;
和AppDelegate.h文件I合成它。
@synthesize tabcontroller;
但@synthesize行我得到一個錯誤和味精是:「丟失上下文屬性實現宣言」
誰能告訴我該怎麼解決呢?
你不需要這個部分:'{*的UITabBarController tabcontroller; }'。該部分由@synthesize自動生成。另請參閱MaciejK的答案。 – Jano