I am new to iPhone development. I am working with an navigational based application and want to add a tab bar view in my application. For that i created a view called TabBarView and added a UITabBarController outlet. viewDidLoad of my TabBarViewController.m is like this:
- (void)viewDidLoad {
[self.view addSubview:tabBarController.view];
[super viewDidLoad];
}
When i watch it in simulator, i can't see my whole tab bar. I can just see half of it. I went through some tutorials and tried to set view size, but i couldn't. Can anyone tell me why can't i see whole tab bar and how to fix it. Thanks in advance.