We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Hi, did you manage to find a solution to this problem?
Sorry, something went wrong.
No branches or pull requests
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:
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
The text was updated successfully, but these errors were encountered: