Andreas Prang
Andreas Prang

Reputation: 2217

white space on top of UITabBarController

I need to add a UITabBarController as subView. But I can't remove the white space on top. Does anybody know a solution?

alt text

Thanks, Andreas

Upvotes: 0

Views: 347

Answers (1)

Kiki Chandra
Kiki Chandra

Reputation: 187

This is what I do..

tabBarController = [[UITabBarController alloc] init];
tabBarController.delegate = self;
[tabBarController.view setFrame:CGRectMake(0,0,320,460)];

Upvotes: 1

Related Questions