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.
Asked
Active
Viewed 3,289 times
3

Ketan Parmar
- 27,092
- 9
- 50
- 75

Kavin Kumar Arumugam
- 1,792
- 3
- 28
- 47
-
if you add in interface also it comes on more option – Anbu.Karthik Sep 06 '17 at 13:02
-
@Anbu.Karthik I not get you clearly – Kavin Kumar Arumugam Sep 06 '17 at 13:05
1 Answers
4
In viewDidload
of your first tab(viewController), you can do something like,
self.tabBarController?.viewControllers?.append(viewController)
here viewController
is your 5th tab!

Ketan Parmar
- 27,092
- 9
- 50
- 75