This question already has answers here:
is it possible to move the UIScrollView indicator from the right side to the left?

(3个答案)


6年前关闭。




UIScrollBar中的始终垂直滚动条出现在ScrollView的右侧。如何将其更改为UIScrollView的左侧?

最佳答案

是的,可能是这样。

scrollView.scrollIndicatorInsets = UIEdgeInsetsMake(0,0,0,scrollView.bounds.size.width-8);

关于ios - 如何将UIScrollview的垂直滚动条更改为左侧站点? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20964111/

10-11 19:36