Hello.
I have a UITableView and I am trying to add a footer to my UITableView. I don't want a button in the footer or anything, but just a message. I have the code that I have so far below,and if you know what to do or what I'm doing wrong, please respond.
This is the code that I have in my .m:
-(NSString *)tableView

int)titleForFooterInSection

NSInteger)section
{
switch (section) {
case 0:
@"My message here";
break;
default:
break;
}
}