I want to make UITabBar, (not UITabBarController) in my viewDidLoad of ViewController.
I want to make UITabBar, (not UITabBarController) in my viewDidLoad of ViewController.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You want to ‘make’ UITabBar in your viewDidLoad?? I am going to assume that you want to use a UITabBar without the tab bar controller…
just create an object of UITabBar, set your controller as it’s delegate, add it as a subview to your controller’s view, implement the tab bar delegate methods.. and you are doen..
of course you’ll have to specify how many tabs it should have, their titles, images etc just like you do with a tab bar controller…