I'm creating a client list that will be sorted alphabetically in a UITableView with 26 sections (alphabetically A-Z). I have an NSDictionary with the clients and the keys are the client names that I want to use for the Array for the tableView.
I started to write a custom method to pull the first character of each key in the Client Dictionary and then try to sort it in to 1 of 26 arrays A,B,C and so on. At that point I thought there must be some class already created to simplify this process but what is it called, or is there none?
I started to write a custom method to pull the first character of each key in the Client Dictionary and then try to sort it in to 1 of 26 arrays A,B,C and so on. At that point I thought there must be some class already created to simplify this process but what is it called, or is there none?