好的,情况就是这样。我正在编写一个iOS应用程序,我有一个从下到上滚动的文本。在某个时刻,让我们说当“示例”这个词出现时,我想我的应用程序自动播放特定的声音,让我们说“JINGLE”。
我该怎么做?
答案 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];
}
你打电话给你想要的每一个条件