views:

748

answers:

0

Hi,

I use a UIViewController, that is managed by a TabbarController. I added a UINavigationcontroller with a Tableview as a rootView. Somehowe the height of the scrollable area of the tableview is some pixel to large.

Do you have some hints? I found people having similar problems but no good solution. I took a look at Apples elements example but couldn't make out the difference to my code. There it works fine..

THX for your help!

Here is my code:

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad];

self.tentOverviewTableViewController = [[[TentOverviewTableViewController alloc]initWithStyle:UITableViewStyleGrouped]autorelease];
self.tentOverviewTableViewController.thirdTabController = self; 
self.navigationController = [[UINavigationController alloc] initWithRootViewController:self.tentOverviewTableViewController];
self.navigationController.navigationBar.tintColor = [UIColor blackColor];
[self.view addSubview:navigationController.view];

}