Hi Guys,
I am unable to display the total information if the results are nil in iPhone.
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { if ([customerList count] == 0) { return @"Could not find any doctor with your search. Please try again."; } return @""; }
I Declared the table as below myTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320,370) style:UITableViewStylePlain];
Here I can display the text upto ... "Could not find any doctor with your......" How can I show full or total information, Please suggest the solution. Thanking You, Madan Mohan