forked from organicmaps/organicmaps-tmp
[iOS] Fixed PP freezing in iOS 14.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
55924f311e
commit
13ba51feb4
1 changed files with 6 additions and 5 deletions
|
@ -74,15 +74,16 @@ final class PlacePageScrollView: UIScrollView {
|
|||
actionBarContainerView.layer.cornerRadius = 10
|
||||
actionBarContainerView.layer.masksToBounds = true
|
||||
actionBarContainerView.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner]
|
||||
|
||||
if previousTraitCollection == nil {
|
||||
scrollView.contentInset = alternativeSizeClass(iPhone: UIEdgeInsets(top: view.height, left: 0, bottom: 0, right: 0),
|
||||
iPad: UIEdgeInsets.zero)
|
||||
scrollView.layoutIfNeeded()
|
||||
}
|
||||
}
|
||||
|
||||
override func viewDidLayoutSubviews() {
|
||||
super.viewDidLayoutSubviews()
|
||||
if previousTraitCollection == nil {
|
||||
scrollView.contentInset = alternativeSizeClass(iPhone: UIEdgeInsets(top: scrollView.height, left: 0, bottom: 0, right: 0),
|
||||
iPad: UIEdgeInsets.zero)
|
||||
updateSteps()
|
||||
}
|
||||
panGesture.isEnabled = alternativeSizeClass(iPhone: false, iPad: true)
|
||||
previousTraitCollection = traitCollection
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue