forked from organicmaps/organicmaps
[ios] Transit step panel is automatically scrolled to bottom
Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
ef576db572
commit
5873b3075d
1 changed files with 5 additions and 0 deletions
|
@ -61,6 +61,11 @@ final class TransportRoutePreviewStatus: SolidTouchView {
|
|||
self.animateConstraints(animations: {
|
||||
self.stepsCollectionViewHeight.constant = self.stepsCollectionView.contentSize.height
|
||||
})
|
||||
|
||||
if let sv = self.stepsCollectionScrollView {
|
||||
let bottomOffset = CGPoint(x: 0, y: sv.contentSize.height - sv.bounds.size.height)
|
||||
sv.setContentOffset(bottomOffset, animated: true)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue