forked from organicmaps/organicmaps
[ios] fix: the navigation screen top bar height
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
ae19226c60
commit
6f4c9be1aa
2 changed files with 11 additions and 2 deletions
|
@ -56,6 +56,7 @@ BOOL defaultOrientation(CGSize const &size) {
|
|||
@interface MWMNavigationInfoView () <MWMLocationObserver>
|
||||
|
||||
@property(weak, nonatomic) IBOutlet UIView *streetNameView;
|
||||
@property(weak, nonatomic) IBOutlet NSLayoutConstraint *streetNameTopOffsetConstraint;
|
||||
@property(weak, nonatomic) IBOutlet NSLayoutConstraint *streetNameViewHideOffset;
|
||||
@property(weak, nonatomic) IBOutlet UILabel *streetNameLabel;
|
||||
@property(weak, nonatomic) IBOutlet UIView *turnsView;
|
||||
|
@ -336,6 +337,12 @@ BOOL defaultOrientation(CGSize const &size) {
|
|||
self.widthConstraint.active = YES;
|
||||
self.heightConstraint = [self.heightAnchor constraintEqualToConstant:ov.frame.size.height];
|
||||
self.heightConstraint.active = YES;
|
||||
self.streetNameTopOffsetConstraint.constant = self.additionalStreetNameTopOffset;
|
||||
}
|
||||
|
||||
// Additional spacing for devices with a small top safe area (such as SE or when the device is in landscape mode).
|
||||
- (CGFloat)additionalStreetNameTopOffset {
|
||||
return MapsAppDelegate.theApp.window.safeAreaInsets.top <= 20 ? 10 : 0;;
|
||||
}
|
||||
|
||||
- (void)refreshLayout {
|
||||
|
@ -358,6 +365,7 @@ BOOL defaultOrientation(CGSize const &size) {
|
|||
(defaultOrientation(availableArea.size) ? kSearchButtonsViewHeightPortrait
|
||||
: kSearchButtonsViewHeightLandscape) /
|
||||
2;
|
||||
self.streetNameTopOffsetConstraint.constant = self.additionalStreetNameTopOffset;
|
||||
}];
|
||||
});
|
||||
}
|
||||
|
|
|
@ -125,12 +125,12 @@
|
|||
</accessibility>
|
||||
<constraints>
|
||||
<constraint firstAttribute="bottom" secondItem="WID-Um-Va6" secondAttribute="bottom" id="5ox-Cb-hJc"/>
|
||||
<constraint firstItem="ShI-bz-5g8" firstAttribute="top" secondItem="YYv-pG-Wkw" secondAttribute="top" constant="24" id="KK1-dA-hII"/>
|
||||
<constraint firstItem="ShI-bz-5g8" firstAttribute="top" secondItem="YYv-pG-Wkw" secondAttribute="top" id="KK1-dA-hII"/>
|
||||
<constraint firstAttribute="trailing" secondItem="WID-Um-Va6" secondAttribute="trailing" constant="-100" id="f4N-aC-XO3"/>
|
||||
<constraint firstItem="ShI-bz-5g8" firstAttribute="leading" secondItem="YYv-pG-Wkw" secondAttribute="leading" priority="300" constant="112" id="nVP-3U-KG2"/>
|
||||
<constraint firstItem="WID-Um-Va6" firstAttribute="leading" secondItem="YYv-pG-Wkw" secondAttribute="leading" constant="-100" id="s8Q-4n-55U"/>
|
||||
<constraint firstItem="WID-Um-Va6" firstAttribute="top" secondItem="YYv-pG-Wkw" secondAttribute="top" constant="-100" id="spZ-F3-yP2"/>
|
||||
<constraint firstAttribute="bottom" secondItem="ShI-bz-5g8" secondAttribute="bottom" constant="12" id="w0r-Ip-f9E"/>
|
||||
<constraint firstAttribute="bottom" secondItem="ShI-bz-5g8" secondAttribute="bottom" constant="10" id="w0r-Ip-f9E"/>
|
||||
</constraints>
|
||||
</view>
|
||||
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Aa6-N8-acP" userLabel="Turns" customClass="NavigationTurnsView" customModule="Organic_Maps" customModuleProvider="target">
|
||||
|
@ -406,6 +406,7 @@
|
|||
<outlet property="secondTurnImageView" destination="CKi-sy-dNO" id="A29-2z-4oh"/>
|
||||
<outlet property="secondTurnView" destination="8Zu-Ff-6p2" id="yEK-rY-S50"/>
|
||||
<outlet property="streetNameLabel" destination="ShI-bz-5g8" id="eZd-Es-g0l"/>
|
||||
<outlet property="streetNameTopOffsetConstraint" destination="KK1-dA-hII" id="d2I-37-Guw"/>
|
||||
<outlet property="streetNameView" destination="YYv-pG-Wkw" id="gbk-SH-idq"/>
|
||||
<outlet property="streetNameViewHideOffset" destination="xMz-Tm-KEn" id="Lwv-ep-zvo"/>
|
||||
<outlet property="toastView" destination="Tzc-l6-Vvt" id="gTw-kd-UAJ"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue