My App have Tab bar Controller, Which have 4 Tab bar items. I need to add one more tab bar item as 5th, is it possible to add new item as programmatically.
In viewDidload
of your first tab(viewController), you can do something like,
self.tabBarController?.viewControllers?.append(viewController)
here viewController
is your 5th tab!