In my application (based on the Tab bar application XCode template) I use a UITabBarController to display a list of different sections of the application that the user can access.

By default, the UITabBarController displays a 'More' button in the tab bar when there are more than 5 items. Also, it allows the user to select the items that he want to be visible in the tab bar.

Currently I can't implement saving and loading the state of the tab bar controller, so I want to disable the 'Edit' button.

Is there any way to disable/hide the 'Edit' bar button that appears on the 'More' navigation controller of UITabBarController?

I tried:

tabBarController.moreNavigationController.navigationBar.topItem.rightBarButtonItem = nil;

and

tabBarController.moreNavigationController.navigationBar.topItem.rightBarButtonItem.enabled = NO;

but they don't seem to work.

link|improve this question

76% accept rate
did u find any solution ? for me any of these solutions not working..plz specify if u got any solution..thanks in advance – Sijo Mar 26 '10 at 15:39
see the answer bellow... I just tested it and it works great – Panagiotis Korros Mar 29 '10 at 18:10
feedback

9 Answers

up vote 23 down vote accepted

Become a delegate of moreNavigationController (it is a UINavigationController) and add this:

- (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;
}

Now it won't appear. The key thing to consider is that Edit button appears not after controller creation, but before displaying the view, and we should sit silently till that moment and then, when the controller is going to display the screen, we will knock the button out so that it won't have a chance to create it again. :)

link|improve this answer
Nicely done! Q: Is it possible for something else (internal to iPhone OS) to already be a delegate to the moreViewController? Not that you'd know for sure. I'm just wondering out loud here ... playing what if. – Joe D'Andrea Feb 1 '10 at 16:49
superb..this is what i was looking for...thanks for this great help.. – Sijo Mar 29 '10 at 7:40
I was trying to do something similar (add an additional button on the leftBarButtonItem property of the 'More' Navigation Controller) and this provided the clues to the solution I was after - thank you. – andybee Dec 29 '10 at 20:13
1  
I think it's lame that we should have to implement a hack like this when that Edit button really should automatically disappear if the customizableViewControllers array is empty or nil... but that's not Aleks' fault and his solution worked for me. – Kenny Wyland Jan 17 '11 at 0:34
feedback

customizableViewControllers is an array; set it to the empty array to disable all editing.

tabBarController.customizableViewControllers = [NSArray arrayWithObjects:nil];
link|improve this answer
Perfect. Thanks. – pluckyglen Sep 6 '09 at 18:02
its removing that array..But how to hide that button..? – Sijo Mar 29 '10 at 7:17
It does indeed remove the edit button. Obviously the UITabBarController checks if there are any customisable buttons and only displays the edit button in that case. Alternatively, you could just set the property to nil instead of setting it to an empty array. – Johnus Sep 23 '10 at 3:06
1  
This should be the correct answer! – Chris May 4 '11 at 2:25
Actually maybe not, it doesn't hide the button for me too. (ios 4.3) – Chris May 4 '11 at 2:26
show 2 more comments
feedback

This can be achieved like such. It is not the most elegant solution, but 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;	
}
link|improve this answer
this is working for me working – Aryabhatt Dec 2 '09 at 12:09
didnt worked for me – Sijo Mar 29 '10 at 7:37
Not very elegant... – Pierre Valade Aug 5 '10 at 10:02
... but it did work ;) – Chris May 4 '11 at 2:37
feedback

i have tried and here's a example.

In 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;
}

to remove the "Edit" Button

    - (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;
}

In your AppDelegate.h

@interface TestAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate, UINavigationControllerDelegate>

correct me if i'm wrong.

link|improve this answer
feedback

tabBarController .customizableViewControllers = nil;

link|improve this answer
Thank you, this doesn't hide or disable the 'Edit' button, but it displays an empty customization dialog. It's better than nothing, but it doesn't do exactly what I want. – Panagiotis Korros May 5 '09 at 14:40
hi m4rkk, this work for me – good guy Jan 17 '11 at 10:33
feedback

@m4rkk & @lan terrell that code does not work.

i wasnt able to get it so i just disable the navigation bar alltogether.

tabBarController.moreNavigationController.navigationBar.hidden = YES;
link|improve this answer
any idea how to remove edit button only ? – Sijo Mar 29 '10 at 7:18
feedback

I don't know about OS4, but it matters if you put the code in viewDidLoad vs viewWillAppear.

Ie, this will work.

  • (void)viewWillAppear:(BOOL)animated { self.customizableViewControllers = nil; }
link|improve this answer
Huh ... and now I'm upgraded to iOS4, and surprise, surprise - the Edit button has come back. – Rob Aug 21 '10 at 13:03
Huh ... and now I'm upgraded to iOS4, and surprise, surprise - the Edit button has come back. But eisornWolfs answer does work. I found that the easiest way to become a delegate was to put that code in my UITabbarController subclass: - (void)viewWillAppear:(BOOL)animated { self.moreNavigationController.delegate = self; } and then implement the method (- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated) right in the same class file. – Rob Aug 21 '10 at 13:21
feedback

I was able to get this working with the following code. I created a CustomTabViewController and then modified my Tab Bar Controller's Class Identity in Interface Builder to use this custom class. Here is the code that it uses (.h and .m file contents). The key is setting the property to nil, which causes the Edit button to not be displayed. For details see: http://developer.apple.com/library/ios/documentation/uikit/reference/UITabBarController_Class/Reference/Reference.html#//apple_ref/occ/instp/UITabBarController/customizableViewControllers "If the array is empty or the value of this property is nil, the tab bar does not allow any items to be rearranged."

#import <UIKit/UIKit.h>

@interface CustomTabBarController : UITabBarController {

}
@end

#import "CustomTabBarController.h"


@implementation CustomTabBarController

- (void)viewDidLoad
{
    self.customizableViewControllers = nil;
    [super viewDidLoad];
}   

@end
link|improve this answer
feedback

Simply add a line of code in life cycle method i.e. application did finish launching:

- (void)applicationDidFinishLaunching:(UIApplication *)application
{ 
    tabBarController.customizableViewControllers=nil;

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.