Guest User

Untitled

a guest
Jun 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. - (CGFloat)tableView:(UITableView *)tView heightForSectionAtIndexPath:(NSIndexPath *) indexPath
  2. {
  3. switch ([indexPath section]) {
  4. case 1:
  5. //height of address section
  6. return 66.0f;
  7. break;
  8. default:
  9. //height of rest
  10. return table.rowHeight;
  11. break;
  12. }
  13. }
Add Comment
Please, Sign In to add comment