I'm trying to manage scroll indicator of my table view manually like the following objective-c code:
UIEdgeInsets e = UIEdgeInsetsMake(0, 0, some_height, 0); [[self tableView] setScrollIndicatorInsets:e];Is there any way to get this functionality in Titanium mobile (iOS) API?
Your Answer
Think you can help? Login to answer this question!