iOS - 在iOS应用程序中按需添加声音

时间:2014-02-04 15:21:37

标签: ios audio ios7 touch

好的,情况就是这样。我正在编写一个iOS应用程序,我有一个从下到上滚动的文本。在某个时刻,让我们说当“示例”这个词出现时,我想我的应用程序自动播放特定的声音,让我们说“JINGLE”。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

import <AudioToolbox/AudioToolbox.h>

-(void) playSound {
    NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"changeTrack" ofType:@"mp3"];
    SystemSoundID soundID;
    AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath: soundPath], &soundID);
    AudioServicesPlaySystemSound (soundID);
    //[soundPath release];
}

你打电话给你想要的每一个条件