Guest User

Untitled

a guest
Jul 11th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
  2. if (([self appCount] > 6) && (section == [sectionArray count] - 1)) {
  3. [appCountLabel setText:[NSString stringWithFormat:@"%d Applications", [self appCount]]];
  4. return footerView;
  5. }
  6. return nil;
  7. }
  8.  
  9. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  10. return 44.0f;
  11. }
Add Comment
Please, Sign In to add comment