Thank you for helping out in advance.
Trying to Autogroup UITableView alphabetically by following this solution: yasirmturk solution But I am stuck at this part where he said:
After that filter by alphabets:
NSArray *sectionArray = [vendorList filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF beginswith[c] %@", [self.sections objectAtIndex:section]]];
rowCount = [sectionArray count];
Question: Where should I put the NSArray *sectionArray code? More specifically?
Current Status:Current Status (repeated array without filtering)
Expected Result:
1) "Egg Benedict" should be under "E" section and "Ham and Egg Sandwich" under "H" section.