我在这里看到了答案:How to disable the edit button that appears in the more section of a UITabBarController?但我无法弄清楚代码的放置位置。
现在我有一个通用应用程序,有多个视图控制器,代码在哪里?此外,解决方案说"成为moreViewController"的代表,我该怎么做?
答案 0 :(得分:2)
在生命周期方法中添加一行代码,即app确实使用选项完成启动:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
tabBarController.customizableViewControllers=nil;
}