From c8d293fded411e32bbc0e875d29632b1b064711a Mon Sep 17 00:00:00 2001 From: Guillaume BIENKOWSKI Date: Mon, 7 Jul 2014 11:43:30 +0200 Subject: [PATCH] Fix contact list size --- Classes/ContactsViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/ContactsViewController.m b/Classes/ContactsViewController.m index e52695c24..d091d65bc 100644 --- a/Classes/ContactsViewController.m +++ b/Classes/ContactsViewController.m @@ -153,6 +153,7 @@ static UICompositeViewDescription *compositeDescription = nil; CGRect subViewFrame= self.view.frame; // let the toolBar be visible subViewFrame.origin.y += self.toolBar.frame.size.height; + subViewFrame.size.height -= self.toolBar.frame.size.height; self.tableController = [[[ContactsTableViewController alloc] init] autorelease]; self.tableView = [[[UITableView alloc] init] autorelease];