我知道Content Inset的作用,它会在UIScrollView中插入contentView。此时它似乎将这些值添加到contentSize,这意味着我需要这样做:
[__scrollView setContentInset:UIEdgeInsetsMake(10.0, 10.0, 10.0, 10.0)];
[__scrollView setContentSize:CGSizeMake(__scrollView.frame.size.width - __scrollView.contentInset.left - __scrollView.contentInset.right, 0.0)];
但问题是,在我使用contentInset后,我再也看不到滚动指示器了?有谁熟悉这个?
答案 0 :(得分:0)
您似乎将contentSize
的{{1}}设置为小于滚动视图本身的大小。只有UIScrollView
大于滚动视图的“框架”时才会有滚动指示器。