If you come across a table, you can use:
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section { yourLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 17)];
Declare yourLabel in your .h file. Then you can access it through
yourLabel.text = @"whatever you want";
Please check if this works :)
source share