Search code examples
iphoneiosuitableviewxcode4

show UItableview scrollbar for few seconds on page load


I am having number of rows in UITableView. To let people know that there are many items I want to display tableview scrollbar for few secs when view appears. Is there any method or delegate which i missed?

Thanks


Solution

  • You can use:

    [self.tableView flashScrollIndicators];
    

    However, you can't make them visible unless user is scrolling the UITableView.