EGOTableViewPullRefresh
EGOTableViewPullRefresh copied to clipboard
Problems with Navigation Controller
I created a UITableViewController following the DEMO. The only different is that I added it inside an UINavigationController.
So when an user clicks a row, I have another view via:
[self.navigationController pushViewController:anotherUITableViewController animated:YES];
When users select BACK, my first row of the table goes below the navigation bar. If I pull it down, I can see it.
Before pushViewController self.view.bounds.size.height=367 self.view.bounds.size.width=320 self.view.bounds.origin.x=0 self.view.bounds.origin.y=0 self.tableView.bounds.size.height=367 self.tableView.bounds.size.width=320 self.tableView.bounds.origin.x=0 self.tableView.bounds.origin.y=0
After pushViewController self.view.bounds.size.height=411 self.view.bounds.size.width=320 self.view.bounds.origin.x=0 self.view.bounds.origin.y= -44 self.tableView.bounds.size.height=411 self.tableView.bounds.size.width=320 self.tableView.bounds.origin.x=0 self.tableView.bounds.origin.y= -44
Do you have any idea where is the problem, please?
Full code can be found here: https://github.com/openphoto/mobile-ios/blob/master/OpenPhoto/TagViewController.m
Thanks
Hi, did you manage to find a solution to this problem?