摇动应用程序,iPhone

时间:2011-04-14 17:29:18

标签: iphone objective-c xcode shake

我有一个应用程序,当摇动开始时启动计时器,并在摇动结束时停止。我需要修改它。我需要摇动它4次,每次摇动后,必须将值推入数组。所以最后,在4次抖动之后,4个定时器值必须保存到一个数组中。可以这样做吗?我想弄清楚但是有点卡住了。

Anu的帮助将不胜感激。 提前致谢

1 个答案:

答案 0 :(得分:1)

-(void) shakeEnded {
  NSTimeInterval time = ... // get the time interval like in your first app

  // add the time to a NSMutableArray
  [self.timerArray addObject:[NSNumber numberWithDouble:time]];

  if ([self.timerArray count] == 4) {
    // do something
  }

}