見つからない何らかの理由で、次のエラーが表示されます。
Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
私は xCode にかなり慣れていないので、助けてください。次の行でアプリケーションがクラッシュします。
[self.window makeKeyAndVisible];
ASAppDelegate.m ファイルで。
関数全体は次のようになります。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
AS_MainViewController *MyrootViewController = [[AS_MainViewController alloc]
initWithNibName:@"AS_MainViewController" bundle: [NSBundle mainBundle]];
self.window.rootViewController = MyrootViewController;
self.window.backgroundColor = [UIColor whiteColor];
return YES;
}
手伝っていただけませんか?
ありがとうございました。