【发布时间】:2014-01-19 00:50:41
【问题描述】:
我正在使用以下代码在按钮单击时获得声音。它完美无缺。问题是如果我降低手机的音量,这个声音并没有减少。我想根据音量按钮管理按钮点击声音。我没有使用输入视图。
SystemSoundID soundID;
NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"sound1" ofType:@"mp3"];
NSURL *soundUrl = [NSURL fileURLWithPath:soundPath];
AudioServicesCreateSystemSoundID ((CFURLRef) CFBridgingRetain(soundUrl) , &soundID);
AudioServicesPlaySystemSound(soundID);
【问题讨论】:
-
上面的代码写在按钮点击方法里面