iOS UIScrollView 无需用户交互和编程滚动
是否可以在用户无法滚动的情况下拥有 UIScrollView,因此是否可以以编程方式滚动 UIScrollView?
Is it possible to have a UIScrollView without the user being able to scroll and therefore is it possible to scroll a UIScrollView programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用这些方法以编程方式滚动:
您还可以设置
userInteractionEnabled=NO
来禁用用户触摸事件。Yes, you can use these methods to scroll programmatically:
You may also set
userInteractionEnabled=NO
to disable user touching events.试试这个:
Try This: