I am configuring a table to import data from a .csv file. sl.name is column 1, sl.asl is column 2, and @"%@ - %@" represents a space dash space in between the two. I need to enter a % directly after the value of sl.asl but cannot get it to work on this string using @"%%" ...possibly because of the existing @"%@ - %@"? I don't know!
// Configure the cell...
ServiceLevel *sl = (ServiceLevel *)[self.importedRows objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ - %@" , sl.name , sl.asl];