forked from organicmaps/organicmaps
[ios] Fixed layout in SelectSetVC on iPad place page.
This commit is contained in:
parent
ca20c56464
commit
2440f513b6
1 changed files with 7 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
|||
self.iPadOwnerNavigationController.view.height = self.tableView.height + bottomOffset;
|
||||
}
|
||||
|
||||
- (void)backTap
|
||||
- (void)popViewController
|
||||
{
|
||||
if (self.iPadOwnerNavigationController)
|
||||
[self.iPadOwnerNavigationController setNavigationBarHidden:YES];
|
||||
|
@ -46,6 +46,11 @@
|
|||
[self.navigationController popViewControllerAnimated:YES];
|
||||
}
|
||||
|
||||
- (void)backTap
|
||||
{
|
||||
[self popViewController];
|
||||
}
|
||||
|
||||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
||||
{
|
||||
return YES;
|
||||
|
@ -128,7 +133,7 @@
|
|||
{
|
||||
[self moveBookmarkToSetWithIndex:static_cast<int>(indexPath.row)];
|
||||
[self.manager reloadBookmark];
|
||||
[self.navigationController popViewControllerAnimated:YES];
|
||||
[self popViewController];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue