I have created a tab based app drawing both nib-designed views and pragmatically designed views. How can I connect these into the UITabBarController despite being of different types?
I have created a tab based app drawing both nib-designed views and pragmatically designed
Share
How did you create it?
You must have allocated it and should have called some initialization method. Probably initWithStyle?
Once that is done, and all your creation, configuration, layouting and adding of subviews is done, you want to display it. Just call
If you did everything else right then it should be displayed properly.
… did I misunderstand your Question?