本文介绍了如何在UIScrollView中禁用垂直滚动?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
UIScrollView有一个属性scrollEnabled来禁用所有滚动,但我想只禁用垂直滚动。
UIScrollView has a property scrollEnabled to disable all scrolling, but I want to disable only the vertical scrolling.
这可能吗?谢谢。
推荐答案
如果scrollView的 contentSize.height
小于它 bounds.size.height
它不会垂直滚动。
If the scrollView's contentSize.height
is less than its bounds.size.height
it won't scroll vertically.
尝试设置:
scrollView.contentSize =(CGSize){< yourContentWidth> ;,1.0}
Swift
scrollView.contentSize = CGSize(width:< yourContentWidth> ;, height:1.0)
这篇关于如何在UIScrollView中禁用垂直滚动?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!