Skip to content

Instantly share code, notes, and snippets.

@nalitzis
Created October 13, 2012 16:22
Show Gist options
  • Save nalitzis/3885215 to your computer and use it in GitHub Desktop.
Save nalitzis/3885215 to your computer and use it in GitHub Desktop.
translating up views
-(void)translateUp:(NSArray *)views{
[UIView animateWithDuration:0.5 animations:^{
for(ContentView *contentView in views){
contentView.transform = CGAffineTransformTranslate(contentView.transform, 0, -contentView.frame.size.height -_initialOffset);
}
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment