Reputation: 15274
I want a table like the middle one in the image below:
I have a table ready with sections, and I want to achieve what this one in the middle has: small A-B letters where you could scroll and click for particular result.
How is that done? Do I need to select particular type of table or cell?
Upvotes: 1
Views: 1024
Reputation: 21553
No, this is just a standard UITableView. You need to implement the sectionIndexTitlesForTableView
callback in it's datasource.
Upvotes: 2