Created
November 26, 2012 13:59
-
-
Save S1ReX/4148340 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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