Guest User

Untitled

a guest
Jan 22nd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
  2.  
  3. UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)] autorelease];
  4. view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blue-bg.jpg"]];
  5. return view;
  6.  
  7. }
  8.  
  9. -(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  10. {
  11. return 50;
  12. }
Add Comment
Please, Sign In to add comment