[ios] Fixed layout in SelectSetVC on iPad place page.

This commit is contained in:
v.mikhaylenko 2015-06-30 18:47:30 +03:00 committed by Alex Zolotarev
parent ca20c56464
commit 2440f513b6

View file

@ -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];
}
}