I have the below code
- (UITableViewCell *)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
[[cell textLabel] setFont:[UIFont systemFontOfSize:10.0]];
return cell;
}
For some reason, I'm getting the following error:
warning: conflicting types for '-(UITableViewCell *)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath'
Does anyone have any idea what might be causing this?