In my old app I could completely disable rearranging views in tab bar controller by doing:
tabBarController.customizableViewControllers = [NSArray arrayWithObjects:nil];
But on iOS4, the Edit button is still displayed, although it displays no items. Is not it possible to hide the edit button completely?
Just for the record:
Under iOS4.1 the edit button does not appear any more when setting the
customizableViewControllersto empty array.Looks like Apple solved the problem.