London
London

Reputation: 15274

How do I implement an iOS table view with letters on the side to navigate?

I want a table like the middle one in the image below:

enter image description here

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

Answers (1)

0xSina
0xSina

Reputation: 21553

No, this is just a standard UITableView. You need to implement the sectionIndexTitlesForTableView callback in it's datasource.

Upvotes: 2

Related Questions