I am using a UIScrollView and while scrolling it I noticed the ScrollIndicator was shrinking based on my scroll inset. But this is not the case with UITableView.
I have tried doing [scrView setBounces:NO], but that doesn’t make it more user-friendly and also it hinders the scroll movement.
Is there any way to make UIScrollView scrollIndicator same as UITableView scrollIndicator?
Thanks for any help!
For a UITableViewController you can switch Bounces off, which means that tableView can not be elastically pulled upwards and then it bounces back. This also means that the scrollbar will not shrink.
You can switch it off using
setBounces:You can do the same in a UIScrollView. See documentation: http://developer.apple.com/library/ios/documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html#//apple_ref/occ/instp/UIScrollView/bounces