Skip to content

Instantly share code, notes, and snippets.

@S1ReX
Created November 26, 2012 13:59
Show Gist options
  • Save S1ReX/4148340 to your computer and use it in GitHub Desktop.
Save S1ReX/4148340 to your computer and use it in GitHub Desktop.
UIView *tableView = MSHookIvar<UIView *>(self, "_tableView");
tableView.frame = CGRectMake(0, 0, 320, 0);
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
[tableView setFrame: CGRectMake(0, 0, 320, 480)];
[UIView commitAnimations];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment