我想改变在 MainWindows.xib 中加载的默认视图。 所以我为我要添加的类别添加了一个新的实例变量。 这里的视图是.h 中的代码 。
@class Table;
@interface GameUIAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
Table *viewController; //changed the class
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet Table *viewController;
然后在主Widow.xib中,我更改了UIView 上的类名和xib 。
. 时 分
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
// Add the view controller s view to the window and display.
[self.window addSubview:viewController.view]; //error here
[self.window makeKeyAndVisible];
return YES;
}
我错过了什么 请解释我为什么犯错