diff --git a/iphone/Maps/UI/AvailableArea/PlacePageArea.swift b/iphone/Maps/UI/AvailableArea/PlacePageArea.swift index 01ce3137c8..727db26ef5 100644 --- a/iphone/Maps/UI/AvailableArea/PlacePageArea.swift +++ b/iphone/Maps/UI/AvailableArea/PlacePageArea.swift @@ -1,4 +1,8 @@ final class PlacePageArea: AvailableArea { + override var areaFrame: CGRect { + return frame + } + override func isAreaAffectingView(_ other: UIView) -> Bool { return !other.placePageAreaAffectDirections.isEmpty } diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.h b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.h index 0599b10171..3f5050516e 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.h +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.h @@ -28,6 +28,7 @@ @property(nonatomic) BOOL isBookmark; @property(nonatomic) BOOL isAreaNotDownloaded; +- (void)setVisible:(BOOL)visible; - (void)setDownloadingProgress:(CGFloat)progress; - (void)setDownloadingState:(MWMCircularProgressState)state; diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.mm b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.mm index 9d90ffe4f8..ddea9d1253 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.mm +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.mm @@ -16,11 +16,12 @@ extern NSString * const kAlohalyticsTapEventKey; } @property(copy, nonatomic) IBOutletCollection(UIView) NSArray * buttons; -@property(weak, nonatomic) IBOutlet UIImageView * separator; @property(weak, nonatomic) id data; @property(weak, nonatomic) id delegate; +@property(nonatomic) NSLayoutConstraint * visibleConstraint; + @end @implementation MWMPlacePageActionBar @@ -30,6 +31,7 @@ extern NSString * const kAlohalyticsTapEventKey; MWMPlacePageActionBar * bar = [NSBundle.mainBundle loadNibNamed:[self className] owner:nil options:nil].firstObject; bar.delegate = delegate; + bar.translatesAutoresizingMaskIntoConstraints = NO; return bar; } @@ -352,16 +354,22 @@ extern NSString * const kAlohalyticsTapEventKey; [vc presentViewController:alertController animated:YES completion:nil]; } +- (void)setVisible:(BOOL)visible +{ + self.visibleConstraint.active = NO; + NSLayoutYAxisAnchor * bottomAnchor = self.superview.bottomAnchor; + if (@available(iOS 11.0, *)) + bottomAnchor = self.superview.safeAreaLayoutGuide.bottomAnchor; + self.alpha = visible ? 1 : 0; + self.visibleConstraint = [bottomAnchor constraintEqualToAnchor:visible ? self.bottomAnchor : self.topAnchor]; + self.visibleConstraint.active = YES; +} + #pragma mark - Layout - (void)layoutSubviews { [super layoutSubviews]; - self.width = self.superview.width; - if (IPAD) - self.maxY = self.superview.height; - - self.separator.width = self.width; CGFloat const buttonWidth = self.width / m_visibleButtons.size(); for (UIView * button in self.buttons) { diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.xib b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.xib index 077efe79ec..dac4d81602 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.xib +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMPlacePageActionBar.xib @@ -1,8 +1,12 @@ - - + + + + + - + + @@ -11,37 +15,67 @@ - + + + + + + + + + + + - + + + - + + + - + + + - + + + - + + + + + + + + + + + + + + + + + - - - - diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPadPlacePageLayoutImpl.mm b/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPadPlacePageLayoutImpl.mm index d18d862691..d15b76814b 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPadPlacePageLayoutImpl.mm +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPadPlacePageLayoutImpl.mm @@ -55,16 +55,14 @@ CGFloat const kBottomOffset = 36; - (void)onShow { auto ppView = self.placePageView; - auto actionBar = self.actionBar; ppView.tableView.scrollEnabled = NO; - actionBar.alpha = 0; ppView.alpha = 0; ppView.origin = {- kPlacePageWidth, self.topBound}; [self.ownerView addSubview:ppView]; place_page_layout::animate(^{ + [self.actionBar setVisible:YES]; ppView.alpha = 1; - actionBar.alpha = 1; ppView.minX = self.leftBound; }); @@ -196,8 +194,18 @@ CGFloat const kBottomOffset = 36; if (actionBar) { auto superview = self.placePageView; - actionBar.origin = {0., superview.height - actionBar.height}; [superview addSubview:actionBar]; + NSLayoutXAxisAnchor * leadingAnchor = superview.leadingAnchor; + NSLayoutXAxisAnchor * trailingAnchor = superview.trailingAnchor; + if (@available(iOS 11.0, *)) + { + UILayoutGuide * safeAreaLayoutGuide = superview.safeAreaLayoutGuide; + leadingAnchor = safeAreaLayoutGuide.leadingAnchor; + trailingAnchor = safeAreaLayoutGuide.trailingAnchor; + } + [actionBar.leadingAnchor constraintEqualToAnchor:leadingAnchor].active = YES; + [actionBar.trailingAnchor constraintEqualToAnchor:trailingAnchor].active = YES; + [actionBar setVisible:NO]; } else { diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPhonePlacePageLayoutImpl.mm b/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPhonePlacePageLayoutImpl.mm index 9fedeaa838..86d0fbfb37 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPhonePlacePageLayoutImpl.mm +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMiPhonePlacePageLayoutImpl.mm @@ -77,8 +77,7 @@ CGFloat const kMinOffset = 1; dispatch_async(dispatch_get_main_queue(), ^{ place_page_layout::animate(^{ - auto actionBar = self.actionBar; - actionBar.maxY = actionBar.superview.height; + [self.actionBar setVisible:YES]; auto const targetOffset = self.state == State::Expanded ? self.expandedContentOffset : self.bottomContentOffset; [self setAnimatedContentOffset:targetOffset]; @@ -89,7 +88,6 @@ CGFloat const kMinOffset = 1; - (void)onClose { place_page_layout::animate(^{ - self.actionBar.minY = self.ownerView.height; [self setAnimatedContentOffset:0]; },^{ id delegate = self.delegate; @@ -113,9 +111,6 @@ CGFloat const kMinOffset = 1; sv.delegate = self; auto const size = frame.size; self.placePageView.minY = size.height; - auto actionBar = self.actionBar; - actionBar.frame = {{0., frame.origin.y + size.height - actionBar.height}, - {size.width, actionBar.height}}; [self.delegate onPlacePageTopBoundChanged:self.scrollView.contentOffset.y]; [self setAnimatedContentOffset:self.state == State::Top ? self.topContentOffset : self.bottomContentOffset]; @@ -138,8 +133,6 @@ CGFloat const kMinOffset = 1; - (void)heightWasChanged { dispatch_async(dispatch_get_main_queue(), ^{ - auto actionBar = self.actionBar; - actionBar.maxY = actionBar.superview.height; if (self.state == State::Bottom) [self setAnimatedContentOffset:self.bottomContentOffset]; }); @@ -351,8 +344,18 @@ CGFloat const kMinOffset = 1; if (actionBar) { auto superview = self.ownerView; - actionBar.minY = superview.height; [superview addSubview:actionBar]; + NSLayoutXAxisAnchor * leadingAnchor = superview.leadingAnchor; + NSLayoutXAxisAnchor * trailingAnchor = superview.trailingAnchor; + if (@available(iOS 11.0, *)) + { + UILayoutGuide * safeAreaLayoutGuide = superview.safeAreaLayoutGuide; + leadingAnchor = safeAreaLayoutGuide.leadingAnchor; + trailingAnchor = safeAreaLayoutGuide.trailingAnchor; + } + [actionBar.leadingAnchor constraintEqualToAnchor:leadingAnchor].active = YES; + [actionBar.trailingAnchor constraintEqualToAnchor:trailingAnchor].active = YES; + [actionBar setVisible:NO]; } else { diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm b/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm index e243e0c0ec..6cf20976bf 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm @@ -82,21 +82,6 @@ CGFloat const kTableViewTopInset = -36; [self.tableView removeObserver:self forKeyPath:kTableViewContentSizeKeyPath context:kContext]; } -- (void)layoutSubviews -{ - [super layoutSubviews]; - if (!IPAD) - return; - - for (UIView * sv in self.subviews) - { - if (![sv isKindOfClass:[MWMPlacePageActionBar class]]) - continue; - sv.maxY = self.height; - break; - } -} - #pragma mark - VisibleArea - (MWMAvailableAreaAffectDirections)visibleAreaAffectDirections diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.xib b/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.xib index 8d7f235cc8..52df321db8 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.xib +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.xib @@ -1,11 +1,11 @@ - + - + @@ -15,7 +15,7 @@ - + @@ -81,9 +81,4 @@ - - - - -