我的應用程序崩潰,因爲我將時間從一個ViewController設置爲AppDelegate.m中的一個ViewController,並顯示消息:發送到實例0x6a0e360的消息:無法識別的選擇器。從一個ViewController設置時間到一個ViewController
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[self performSelector:@selector(toSecondViewController:) withObject:nil afterDelay:5];
}
-(void)toSecondViewController{
SecondViewController *second = [[SecondViewController alloc] init];
[self.navigationController pushViewController:sale animated:YES];
}
我不知道爲什麼?
如果您不包含錯誤消息和堆棧跟蹤,我們可能不知道爲什麼。 – Jonah
我更新我的問題 – Sovannarith