1

当我的 touchbegan 方法在那里时,我想实现 longpressgesture。我正在使用 NSTimer 并在计数器变为 3 时记录计数器。我认出那是长按。但是,当我释放按钮然后再次按下 mycounter 时,会保留先前的值并增加先前的值。尽管我将计数器分配为零。请帮助任何帮助。

 var counter : Int = 0
  var timer :NSTimer?

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

        timer = NSTimer()
        counter == 0;
        timer = NSTimer.scheduledTimerWithTimeInterval(1, target:self, selector: Selector("updateCounter"), userInfo: nil, repeats: true)

    }

    func updateCounter() {
       print(counter++)
        if (counter > 3){
            timer!.invalidate()
            timer = nil;
        }
    }
 override public func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {

        timer!.invalidate()
          timer = nil;
        counter == 0;

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



        if (counter>=3){
            print("hello")

        }

    }
4

1 回答 1

2

这是经典等式==与分配=运算符混淆

timer = NSTimer() // this line is actually not needed
counter = 0

...

timer?.invalidate() // better use question mark to avoid a potential crash
timer = nil
counter = 0

并删除所有分号。

于 2016-04-21T08:21:31.140 回答