Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save exce11ent/6701857 to your computer and use it in GitHub Desktop.
Save exce11ent/6701857 to your computer and use it in GitHub Desktop.
Fix scrollView's content offset after push segue
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
_scrollView.contentOffset = _lastOffset;
}
-(void)viewDidDisappear:(BOOL)animated
{
[self unregisterForKeyboardNotifications];
_lastOffset = _scrollView.contentOffset;
_scrollView.contentOffset = CGPointZero;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment