I constructed a tabbar with more than 5 tabs and the remainders were automatically added into the “More” view. That is fine, but along with that, the user is able to “Edit” the configuration of the app’s tabs.
I do not want the user to be able to do that. Is there a way to prevent the user from doing this?
Take a look at the UITabBarController documentation. Search for “customizableViewControllers”
Basically what you have to do is use the following code, to set the value to nil:
Cheers,
VFN