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;
次に、MainWidow.xibで、UIViewのクラス名とxibを変更しました。
.mで
- (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;
}
何が欠けているのか、なぜこのエラーが発生するのか説明してください