- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 SystemSoundID 在按下按钮时创建声音,这样:
这是对象声明:
SystemSoundID soundEffect;
这是在 viewDidLoad 中:
NSString *soundPath = [[NSBundle mainBundle]pathForResource:@"create_button_sound" ofType:@"mp3"];
NSURL *soundURL = [NSURL fileURLWithPath:soundPath];
AudioServicesCreateSystemSoundID(CFBridgingRetain(soundURL), &soundEffect);
最后当按钮被按下时:
AudioServicesPlaySystemSound(soundEffect);
控制效果器声音的最佳方式是什么?我想确保如果有人将他的 iphone 音量级别设置为最大,这样声音就不会太大声..
谢谢@@!
最佳答案
根据这个SO问题(AudioServicesPlaySystemSound Volume? - 稍微过时了,因为声音不再位于常规下),你会因为全局设置可以覆盖系统声音的音量而陷入困境。
解决方法是使用 AVAudioPlayer
,如果可能的话。
例子:
NSString *soundPath = [[NSBundle mainBundle]pathForResource:@"create_button_sound" ofType:@"mp3"];
NSURL *soundURL = [NSURL fileURLWithPath:soundPath];
AVAudioPlayer *mySoundPlayer =[[AVAudioPlayer alloc] soundURL error:&error];
mySoundPlayer .volume=0.8f; //between 0 and 1
[mySoundPlayer prepareToPlay];
mySoundPlayer.numberOfLoops=0; //or more if needed
[mySoundPlayer play];
关于ios - 如何编辑 SystemSoundID 对象音量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27868323/
首先,感谢 StackOverflow 团队,因为这是一个非常有用的网站,因为我正在 iPhone 上进行开发。其次,请原谅我的语言。我是一个法国人,和每个法国人一样,我的英语很糟糕。 我的 iPho
在我的应用程序中,我将按钮设置为键盘。每个按钮的作用类似于钢琴键,您触摸按钮,按住时会播放声音,松开时会停止。对于此方法,我使用了两个 IBAction。一个用于 Touch Down(声音播放)和
我使用 SystemSoundID 在按下按钮时创建声音,这样: 这是对象声明: SystemSoundID soundEffect; 这是在 viewDidLoad 中: NSString *sou
我有这个代码。 import AudioToolbox.AudioServices if restoreData.boolForKey("VibrationSwitchButton") == true
我似乎无法弄清楚。 我可以用以下方式播放一种声音: - (void) initSounds { // Get the main bundle for the app CFBundleR
这是我播放声音的方式: var soundID: SystemSoundID = 1016 AudioServicesPlaySystemSound(soundID) 但这不是用户设置的默认系统声音。
问题在标题中:“如果我打开了 ARC,是否需要释放 SystemSoundID?”这是我的代码: NSURL *pathURL = [NSURL fileURLWithPath:path]; Syst
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭
在我的应用程序中,当用户输入错误密码时我需要振动。 我的设备操作系统:iOS5 iPhone3G有震动,iPhone4、iPad没有震动。 我已按照以下步骤操作: 1.将 AudioToolbox 框
- (void)playAlarmSound:(NSTimer *)theTimer { static SystemSoundID soundID/* = 0 */; // ? if
我是一名优秀的程序员,十分优秀!