I could only find if one wants to display scroll bar or not using
tableView.showsVerticalScrollIndicator = YES/NO;
but how can I customize
You can change the scroll indicator color using:
tableView.indicatorStyle=UIScrollViewIndicatorStyleWhite;
Hope this helps.