Reputation: 2217
I need to add a UITabBarController as subView. But I can't remove the white space on top. Does anybody know a solution?
Thanks, Andreas
Upvotes: 0
Views: 347
Reputation: 187
This is what I do..
tabBarController = [[UITabBarController alloc] init];
tabBarController.delegate = self;
[tabBarController.view setFrame:CGRectMake(0,0,320,460)];
Upvotes: 1