I have an iOS app with a "More..." button at the UITabBarController. When I am hitting "More..." the new view appears that has an "Edit" button on top right. Clicking "Edit" shows the view in Edit mode, see at the attached image.
The problem with the edit mode is that the "Done" button is shown below the correct position (see the green arrow) or to put differently the bar takes more space than it should be? Why that happens?
"Done" should be on the top right position and the bar should have less height. I guess that I need to change things in
- (void)tabBarController:(UITabBarController *)tabBarController willBeginCustomizingViewControllers:(NSArray *)viewControllers
{
}
but I don't know what exactly happens here.
Code at iOS8.