찾다

 >  Q&A  >  본문

objective-c - 关于iOS中的动画效果

原文地址:http://www.raywenderlich.com/76147/uikit-dynamics-tutorial-swift
在原文的最下面有这样一段代码,实现的大概效果是:当手指触摸屏幕某一点时,view就移动到那一点,我不是很清楚其中这段if语句,if语句的意思应该是把snap行为移除,可是这有什么作用,为什么把if语句删掉了就不能达到上面的效果

override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {

        if (snap != nil) {
            animator.removeBehavior(snap)
        }
        
        let touch = touches.first! as UITouch
        snap = UISnapBehavior(item: square, snapToPoint: touch.locationInView(view))
        animator.addBehavior(snap)
    }
巴扎黑巴扎黑2770일 전290

모든 응답(1)나는 대답할 것이다

  • 怪我咯

    怪我咯2017-04-17 17:29:12

    마지막 클릭 이벤트에 대한 응답으로 완료되지 않았거나 이벤트가 완료된 후 재설정되지 않는 터치 포인트를 차단하는 데 사용됩니다.

    회신하다
    0
  • 취소회신하다