[ios] Set correct place page top bound.

This commit is contained in:
VladiMihaylenko 2017-04-27 13:27:06 +03:00 committed by r.kuznetsov
parent 674ffb9b1e
commit 8503501a5b

View file

@ -95,9 +95,12 @@ CGFloat const kMinOffset = 1;
self.actionBar.minY = self.ownerView.height;
[self.scrollView setContentOffset:{} animated:YES];
},^{
id<MWMPlacePageLayoutDelegate> delegate = self.delegate;
// Workaround for preventing a situation when the scroll view destroyed before an animation finished.
[delegate onPlacePageTopBoundChanged:0];
self.actionBar = nil;
self.scrollView = nil;
[self.delegate shouldDestroyLayout];
[delegate shouldDestroyLayout];
});
}