我的应用程序崩溃了,因为我在 AppDelegate.m 中为下面的方法设置了从一个 ViewController 到一个 ViewController 的时间,它显示消息:无法识别的选择器发送到实例 0x6a0e360。
-(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];
}
我不知道为什么?