Int 值持久化

Int value Persist

我想在我的 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")

        }

    }

这是经典方程式 == 与赋值 = 运算符混淆

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

并删除所有分号。