0

我是对象 C 的新手,我有两个问题,但在 stackoverflow 上找不到答案。

我的 iOS 应用程序很简单,屏幕上只有一个按钮,如果用户点击它,它将:

  1. 播放声音

  2. 以毫秒为单位获取 2 次点击之间的时间间隔。

感谢 Owl,现在获取间隔的代码如下所示:

(长时间编码,因为我不明白什么是“UNIX 时间戳”,而且我不知道在哪里/如何使用第二个代码。)

double dt1;
double dt2;

-(IBAction)Beated:(id)sender{
   If (FB == 1) {
      FB = 2;
      NSDate *date = [NSDate date];
      NSTimeInterval ti = [date timeIntervalSince1970];
      dt1 = ti;
   } else {
      FB = 1
      NSDate *date = [NSDate date];
      NSTimeInterval ti = [date timeIntervalSince1970];
      dt2 = ti;
      double progress;
      progress = dt2 - dt1;
      int timeInMs = trunc(progress * 1000);
      NSLog(@"Interval %d", timeInMs);
   }
}

启动应用程序后,第一次播放声音有延迟,但第一次点击后效果很好。如何停止这种滞后?

我播放声音的代码:

在.h

#import <AVFoundation/AVFoundation.h>

AVAudioPlayer *audioPlayer;

 -(IBAction)Beated:(id)sender {
       NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/ssn.wav",     [[NSBundle mainBundle] resourcePath]]];
       NSError*error;
       audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url  error:$error];
       audioPlayer.numberOfLoops = 0;
       [audioPlayer play];
}

谢谢

4

1 回答 1

1

第一次点击,

NSDate *date = [NSDate date];
NSTimeInterval ti = [date timeIntervalSince1970];

获取 UNIX 时间戳,

第二次点击,

NSDate *date = [NSDate date];
NSTimeInterval ti = [date timeIntervalSince1970];

获取另一个 UNIX 时间戳,然后从第二个时间戳中减去第一个。减法的结果就是你的进步。

然后使用此代码获取小时:分钟:秒

double progress;

 int minutes = floor(progress/60);
 int seconds = trunc(progress - minutes * 60);

代码礼貌:如何将 NSTimeInterval(秒)转换为分钟

更轻松

两次点击获取两个NSDate然后使用,然后不需要减法,只需使用以下方法获取时间间隔。然后计算分钟和秒,如上所示。

- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate

或者

使用类中的components:fromDate:toDate:options:方法NSCalender。请参阅:Apple 文档

编辑 :

Jus 做了一个快速测试,它对我来说非常有效。

测试代码:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.

    NSDate *date = [NSDate date];
    NSTimeInterval ti = [date timeIntervalSince1970];

    NSLog(@"%f",ti);

    return YES;
}

NSLog 输出:

2012-08-22 10:46:09.123 Test[778:c07] 1345596369.123665
于 2012-08-22T00:22:50.407 回答