如何在xcode延迟后播放声音

时间:2011-03-02 20:03:01

标签: xcode ios4

如何在2秒后自动播放声音?

1 个答案:

答案 0 :(得分:3)

你会使用计时器

- (void)playSomeSound:(NSTimer *)timer {
    // Your sound playing code goes here
}

[NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(playSomeSound:) userInfo:nil repeats:NO];