Xcode 有关于Autosynthesized property 'ViewController'
和相似的问题,'window'
并告诉我属性是在 BSAppDelegate.h 中声明的。尽管这里有几个人试图解释下划线问题,但我不知道如何解决这个问题。当我省略下面提到 ViewController 或窗口的任何行时,我的应用程序将无法编译。
//
// BSAppDelegate.h
//
#import <UIKit/UIKit.h>
@class BSViewController;
@interface BSAppDelegate : UIResponder <UIApplicationDelegate>{
UIWindow *window;
BSViewController *viewController;
}
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) BSViewController *viewController;
@end