在我的应用程序中(基于Tab栏应用程序XCode模板)我使用UITabBarController来显示用户可以访问的应用程序的不同部分的列表。
默认情况下,当有超过5个项目时,UITabBarController会在标签栏中显示“更多”按钮。此外,它允许用户选择他希望在标签栏中显示的项目。
目前我无法实现保存和加载标签栏控制器的状态,所以我想禁用“编辑”按钮。
有没有办法禁用/隐藏UITabBarController的“更多”导航控制器上显示的“编辑”栏按钮?
我试过了:
tabBarController.moreNavigationController.navigationBar.topItem.rightBarButtonItem = nil;
和
tabBarController.moreNavigationController.navigationBar.topItem.rightBarButtonItem.enabled = NO;
但它们似乎不起作用。
答案 0 :(得分:59)
成为moreNavigationController
的委托(它是一个UINavigationController)并添加:
- (void)navigationController:(UINavigationController *)navigationController
willShowViewController:(UIViewController *)viewController
animated:(BOOL)animated {
UINavigationBar *morenavbar = navigationController.navigationBar;
UINavigationItem *morenavitem = morenavbar.topItem;
/* We don't need Edit button in More screen. */
morenavitem.rightBarButtonItem = nil;
}
现在它不会出现。要考虑的关键是编辑按钮不是在控制器创建之后,而是在显示视图之前出现,我们应该静静地坐到那一刻,然后,当控制器要显示屏幕时,我们将按下按钮以便它没有机会再创造它。 :)
答案 1 :(得分:53)
customizableViewControllers
是一个数组;将其设置为空数组以禁用所有编辑。
tabBarController.customizableViewControllers = [NSArray arrayWithObjects:nil];
答案 2 :(得分:10)
tabBarController .customizableViewControllers = nil;
答案 3 :(得分:6)
我试过,这是一个例子。
在AppDelegate.m中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
// Add the tab bar controller's view to the window and display.
[self.window addSubview:tabBarController.view];
[self.window makeKeyAndVisible];
//setting delegate to disable edit button in more.
tabBarController.moreNavigationController.delegate = self;
return YES;
}
删除“编辑”按钮
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
UINavigationBar *morenavbar = navigationController.navigationBar;
UINavigationItem *morenavitem = morenavbar.topItem;
/* We don't need Edit button in More screen. */
morenavitem.rightBarButtonItem = nil;
}
在AppDelegate.h中
@interface TestAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate, UINavigationControllerDelegate>
如果我错了,请纠正我。
答案 4 :(得分:4)
我能够使用以下代码实现此目的。我创建了一个CustomTabViewController
,然后在Interface Builder中修改了我的Tab Bar Controller的Class Identity以使用这个自定义类。这是它使用的代码(.h和.m文件内容)。关键是将属性设置为nil,这会导致不显示“编辑”按钮。有关详细信息,请参阅:http://developer.apple.com/library/ios/documentation/uikit/reference/UITabBarController_Class/Reference/Reference.html#//apple_ref/occ/instp/UITabBarController/customizableViewControllers
“如果数组为空或此属性的值为nil,则标签栏不允许重新排列任何项目。”
#import <UIKit/UIKit.h>
@interface CustomTabBarController : UITabBarController {
}
@end
#import "CustomTabBarController.h"
@implementation CustomTabBarController
- (void)viewDidLoad
{
self.customizableViewControllers = nil;
[super viewDidLoad];
}
@end
答案 5 :(得分:3)
@ m4rkk&amp; @lan terrell代码不起作用。
我无法得到它所以我只是完全禁用了导航栏。
tabBarController.moreNavigationController.navigationBar.hidden = YES;
答案 6 :(得分:3)
这可以这样实现。它不是最优雅的解决方案,但It Works™。
// Optional UITabBarControllerDelegate method
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
[self performSelector:@selector(removeEdit) withObject:nil afterDelay:.0001];
}
- (void)removeEdit
{
tabBarController.moreNavigationController.navigationBar.topItem.rightBarButtonItem = nil;
}
答案 7 :(得分:3)
我不了解iOS4,但如果您将代码放在viewDidLoad
vs viewWillAppear
中,则很重要。
- (void)viewWillAppear:(BOOL)animated
{
self.customizableViewControllers = nil;
}
答案 8 :(得分:3)
只需在生命周期方法中添加一行代码即应用程序完成启动:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
tabBarController.customizableViewControllers=nil;
}
答案 9 :(得分:2)
如果您使用NavigationController作为第一个ViewController并按其中一个按钮进入UITabBarController。然后,除了添加下面的代码,
- (void)navigationController:(UINavigationController *)navigationController
willShowViewController:(UIViewController *)viewController
animated:(BOOL)animated
{
UINavigationBar *morenavbar = navigationController.navigationBar;
UINavigationItem *morenavitem = morenavbar.topItem;
/* We don't need Edit button in More screen. */
morenavitem.rightBarButtonItem = nil;
}
您需要添加此“if语句”以避免在您第一次单击第5个ViewControllers及更高版本时显示编辑按钮。
if (self.selectedIndex >= 4)
{
self.customizableViewControllers = nil;
}
答案 10 :(得分:1)
Aleks N的答案有效,但我想修改一下
- (void)navigationController:(UINavigationController *)navigationController
willShowViewController:(UIViewController *)viewController
animated:(BOOL)animated
{
if (navigationController.viewControllers.count == 1)
{
UINavigationBar *morenavbar = navigationController.navigationBar;
UINavigationItem *morenavitem = morenavbar.topItem;
/* We don't need Edit button in More screen. */
morenavitem.rightBarButtonItem = nil;
}
}
由于每次在此视图堆栈上按下或弹出视图控制器时都会调用此委托方法。当我们将其他观点推向这个&#34;更多&#34;查看控制器,我们不想这样做。
答案 11 :(得分:1)
使用Xcode大于4.0的人(我正在使用Xcode 4.2 for Snow Leopard):
首先检查上次在哪里更改视图数组。我认为将customizableView-Array设置为nil的方法无关紧要。苹果描述说:
重要提示:在标签栏界面中添加或删除视图控制器也会将可自定义视图控制器数组重置为默认值,从而允许再次自定义所有视图控制器。因此,如果您对viewControllers属性进行修改(直接或通过调用setViewControllers:animated:方法)并仍希望限制可自定义的视图控制器,则还必须更新customizableViewControllers属性中的对象数组。
它对我有用,所以请试一试。 我在这里找到了这个描述:link to the description on developer.apple.com在“防止选项卡的自定义”一章中。
答案 12 :(得分:1)
这是一个迟到但我认为这是一个有用的贡献。 Aleks N的回答可以创建一种情况,即在&#34;更多标签&#34;下的每个视图控制器中删除 rightBarButtonItem 。 (正如鲍磊所说)。我想推荐使用宝磊的代码,但不同的是实现它的 didShowViewController 委托方法。
由于他的代码现在存在,用户可以点击&#34;更多&#34;选项卡返回基础 UIMoreViewController 表可以使属于其他viewControllers的 rightBarButtonItem 设置为nil。
- (void)navigationController:(UINavigationController *)navigationController
didShowViewController:(UIViewController *)viewController
animated:(BOOL)animated
{
if (navigationController.viewControllers.count == 1)
{
UINavigationBar *morenavbar = navigationController.navigationBar;
UINavigationItem *morenavitem = morenavbar.topItem;
/* We don't need Edit button in More screen. */
morenavitem.rightBarButtonItem = nil;
}
}
区别很小,但我花了相当多的时间来发现这个错误。
答案 13 :(得分:1)
iPhone 6 Plus将允许横向模式下的标签栏上的按钮比纵向更多。不幸的是,这意味着它会在旋转设备时重置customizableViewControllers数组,并且这里没有任何答案适用于我。
我已经有了自己的UITabBarController子类,并且覆盖了customizableViewControllers的setter和getter方法是从More屏幕中删除Edit按钮的唯一可靠方法:
- (NSArray *)customizableViewControllers
{
return nil;
}
- (void)setCustomizableViewControllers:(NSArray*)controllers
{
//do nothing
}
答案 14 :(得分:0)
唯一对我有用的解决方案
self.moreNavigationController.navigationBar.topItem?.rightBarButtonItem?.title = ""
self.moreNavigationController.navigationBar.topItem?.rightBarButtonItem?.isEnabled = false
答案 15 :(得分:0)
我尝试了大多数这些解决方案,但遇到一个问题,即旋转设备时编辑按钮会返回。旋转将重置回第一个视图控制器,然后当我返回到更多视图控制器时,编辑按钮在那里。最好的解决方案是成为UITabBarControllerDelegate
,并在更多视图控制器成为所选视图控制器时将右栏按钮设置为nil。这适用于iOS 11-12。
final class DashboardController: UITabBarController {
override func viewDidLoad() {
super.viewDidLoad()
delegate = self
}
}
extension DashboardController: UITabBarControllerDelegate {
func tabBarController(_ tabBarController: UITabBarController, didSelect viewController: UIViewController) {
if viewController == moreNavigationController {
moreNavigationController.navigationBar.topItem?.rightBarButtonItem = nil
}
}
}