@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@class ViewController;
@property (strong,nonatomic) ViewController *viewController;
@end
在@class ViewController 行上,它说存在非法接口限定符错误。这是什么意思,我该如何解决?