IPhone - create UITabBar programmatically?

How to do it?

Please note that I << → do not want a controller. Just a tab bar.

+4
source share
1 answer

UITabBar *aTabBar = [[UITabBar alloc] initWithFrame:aFrame];

You will probably need to refer to the class documentation , for example, methods such as -setItems:animated: Also see UITabBarDelegate Protocol.

+9
source

Source: https://habr.com/ru/post/1315302/


All Articles