ScrollView not scrolling when dragging on buttons

前端 未结 5 1983
暖寄归人
暖寄归人 2020-11-29 18:17

I have a scroll view that used to scroll when it didn\'t have buttons all over it. Now it does, and when dragging the mouse (on simulator) nothing happens (i think because t

5条回答
  •  爱一瞬间的悲伤
    2020-11-29 18:54

    Swift 3 Solution

    override func touchesShouldCancel(in view: UIView) -> Bool {
        if view is UIButton {
            return true
        }
        return super.touchesShouldCancel(in: view)
    }
    

提交回复
热议问题