How to manage scroll indicator manually

You must Login before you can answer or comment on any questions.

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!