Build: Contacts List
This screen shows a list of contacts grouped by the first letter of their names. Each group has a header showing the letter and a footer showing the number of contacts in that group.
Target UI
------------------------- | Contacts List | ------------------------- | A | | - Alice | | - Aaron | | 2 contacts | ------------------------- | B | | - Bob | | - Bella | | - Bill | | 3 contacts | ------------------------- | C | | - Carol | | 1 contact | -------------------------
Use UITableView to display contacts grouped by first letter
Show section headers with the letter
Show section footers with the count of contacts in that section
Use default UITableView styles
Support dynamic number of contacts and sections