Skip to content

Instantly share code, notes, and snippets.

@kylefox
Created March 7, 2012 22:21
Show Gist options
  • Save kylefox/1996646 to your computer and use it in GitHub Desktop.
Save kylefox/1996646 to your computer and use it in GitHub Desktop.
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[UIView
animateWithDuration:duration
animations:^{
self.gridView.contentOffset = CGPointMake(_currentPage * self.view.frame.size.height, 0);
}
completion:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment