Advertisement
Guest User

My Code for resizing UITableView

a guest
Oct 23rd, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CGRect aRect = aTableView.frame;
  2. aRect.size.height += 226; //my code for sizing it down went the other way, -=226
  3. [aTableView setFrame:aRect];
  4. [aTableView setNeedsDisplay];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement