I am using UITabbarController with 8 to 9 items (these are UINavigation controllers)
It is easy to select an item programmatically using
tabbarcontroller.selectedIdex = x;
if x value is between 0 to 4 then it's work as expected but if it's greater than 4 then it's select "More" as a view controller.
How can we programmatically select an item under "More" list ?
any help would be appreciated..
Thanks in advance