I have a UITabBarController with two UIViewControllers f.e "All Messages", "Favourite Messages".
For some action I need dynamically replace my UITabBar items with new (Other actions, other images)...
so it should be "Like" and "DisLike" instead of "All Messages", "Favourite Messages".
What is the best way to do it?
// Note
//I don't need ViewControllers for these items, I will use TabBar delegate
//so I can't do following:
tabBarVC.viewControllers = [NSArray ...new view controllers]
Thanks