I had my application working fine, then without doing anything, out of nowhere I got 2 errors in appDelegate.h
. One says this:
Expected selector for Objective-C method
The other says this:
Expected method body
I have no idea why this is happening, I have other projects with the exact same app delegate and they all work just fine.
This is my appDelegate.h:
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate> // I get the errors here
@property (strong, nonatomic) UITabBarController *tbc;
@property(strong, nonatomic) UIWindow *window;
@end
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…