UIScrollView custom paging size

后端 未结 11 1523
走了就别回头了
走了就别回头了 2020-12-07 11:49

paging in UIScrollView is a great feature, what I need here is to set the paging to a smaller distance, for example I want my UIScrollView to page less size that the UIScrol

11条回答
  •  隐瞒了意图╮
    2020-12-07 12:03

    The easiest way is to add this code

    scrollView.clipsToBounds = false
    scrollView.removeGestureRecognizer(scrollView.panGestureRecognizer)
    view.addGestureRecognizer(scrollView.panGestureRecognizer)
    

提交回复
热议问题