views:

10

answers:

1

Hi

I want to show user there is a more content below but UITableView only shows scroll indicator when we scroll the tableview. There is any way, so I can show scroll indicator always

A: 

There's no way (that I know of) to permanently display the scrollbars. You can

[tableView flashScrollIndicators]

in -viewDidAppear: to shortly display the scrollbars when the view is shown.

Also, if you have many entries, you might wanna consider showing the (alphabetic) section index at the right. To do that, define -sectionIndexTitlesForTableView in your UITableViewDataSource. Using tableView.sectionIndexMinimumDisplayRowCount you can define the minimum number of entries to display the section Index.

Ortwin Gentz