我的委托上有两个选项卡控制器,我想根据需要切换它们。RootController 显示为默认值,当我想显示我使用的另一个类的 secondController 时,
myAppDelegate *appDelegate = (myAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.window addSubview:appDelegate.secondController.view];
[appDelegate.rootController.view removeFromSuperview];
问题是当我尝试使用相同的方法返回时。由于错误访问异常导致崩溃...
myAppDelegate *appDelegate = (myAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.window addSubview:appDelegate.rootController.view];
[appDelegate.secondController.view removeFromSuperview];
任何帮助,将不胜感激。谢谢你。