Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Grechuhin <i.grechuhin@mapswithme.com>2015-06-24 20:41:47 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:57 +0300
commit0adffd4fe813c40ccaa69175b87a458a1e2cde53 (patch)
treef53f0883bade3f0676b8dc5a5684223cebf6f4ea /iphone/Maps/Classes/MWMiPadPlacePage.mm
parentcfd112f0c0d114ac1e0446417cc8d129c8a9d29c (diff)
[ios] Fixed large PP fit in screen on iPad.
Diffstat (limited to 'iphone/Maps/Classes/MWMiPadPlacePage.mm')
-rw-r--r--iphone/Maps/Classes/MWMiPadPlacePage.mm35
1 files changed, 22 insertions, 13 deletions
diff --git a/iphone/Maps/Classes/MWMiPadPlacePage.mm b/iphone/Maps/Classes/MWMiPadPlacePage.mm
index e2f8fd3e5a..02eeefaf60 100644
--- a/iphone/Maps/Classes/MWMiPadPlacePage.mm
+++ b/iphone/Maps/Classes/MWMiPadPlacePage.mm
@@ -19,6 +19,7 @@
extern CGFloat kBookmarkCellHeight;
static CGFloat const kLeftOffset = 12.;
static CGFloat const kTopOffset = 36.;
+static CGFloat const kBottomOffset = 12.;
@interface MWMiPadPlacePageViewController : UIViewController
@@ -87,6 +88,7 @@ static CGFloat const kTopOffset = 36.;
@interface MWMiPadPlacePage ()
@property (strong, nonatomic) MWMiPadNavigationController * navigationController;
+@property (nonatomic) CGFloat height;
@end
@@ -97,16 +99,14 @@ static CGFloat const kTopOffset = 36.;
[super configure];
CGFloat const defaultWidth = 360.;
- CGFloat const actionBarHeight = 58.;
- CGFloat const defaultHeight = self.basePlacePageView.height + self.anchorImageView.height + actionBarHeight - 1;
+ [self updatePlacePageLayout];
[self.manager addSubviews:@[self.navigationController.view] withNavigationController:self.navigationController];
- self.navigationController.view.frame = CGRectMake( -defaultWidth, self.topBound + kTopOffset, defaultWidth, defaultHeight);
- self.extendedPlacePageView.frame = CGRectMake(0., 0., defaultWidth, defaultHeight);
+ self.navigationController.view.frame = CGRectMake( -defaultWidth, self.topBound + kTopOffset, defaultWidth, self.height);
+ self.extendedPlacePageView.frame = CGRectMake(0., 0., defaultWidth, self.height);
self.anchorImageView.image = nil;
self.anchorImageView.backgroundColor = [UIColor whiteColor];
self.actionBar.width = defaultWidth;
- self.actionBar.origin = CGPointMake(0., defaultHeight - actionBarHeight);
}
- (void)show
@@ -139,25 +139,20 @@ static CGFloat const kTopOffset = 36.;
- (void)willFinishEditingBookmarkTitle:(NSString *)title
{
[super willFinishEditingBookmarkTitle:title];
- CGFloat const actionBarHeight = self.actionBar.height;
- CGFloat const defaultHeight = self.basePlacePageView.height + self.anchorImageView.height + actionBarHeight - 1;
- self.actionBar.origin = CGPointMake(0., defaultHeight - actionBarHeight);
- self.navigationController.view.height = defaultHeight;
+ [self updatePlacePageLayout];
}
- (void)addBookmark
{
[super addBookmark];
- self.navigationController.view.height += kBookmarkCellHeight;
- self.extendedPlacePageView.height += kBookmarkCellHeight;
+ self.height += kBookmarkCellHeight;
self.actionBar.minY += kBookmarkCellHeight;
}
- (void)removeBookmark
{
[super removeBookmark];
- self.navigationController.view.height -= kBookmarkCellHeight;
- self.extendedPlacePageView.height -= kBookmarkCellHeight;
+ self.height -= kBookmarkCellHeight;
self.actionBar.minY -= kBookmarkCellHeight;
}
@@ -204,8 +199,22 @@ static CGFloat const kTopOffset = 36.;
}
}
+- (void)updatePlacePageLayout
+{
+ CGFloat const actionBarHeight = self.actionBar.height;
+ self.height = self.basePlacePageView.height + self.anchorImageView.height + actionBarHeight - 1;
+ self.actionBar.origin = CGPointMake(0., self.height - actionBarHeight);
+}
+
#pragma mark - Properties
+- (void)setHeight:(CGFloat)height
+{
+ _height = MIN(height, self.parentViewHeight - kTopOffset - kBottomOffset);
+ self.navigationController.view.height = _height;
+ self.extendedPlacePageView.height = _height;
+}
+
- (MWMiPadNavigationController *)navigationController
{
if (!_navigationController)