- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个闹钟应用程序,我需要让用户选择唤醒的铃声。我有一个 UITableView,其中包含我的声音列表,当用户点击我想要播放的声音时。
但是,我的声音不会播放,除非我越过对 AudioServicesPlaySystemSound 的调用(或者如果我在对 AudioServicesDisposeSystemSoundID 的调用上设置断点,它会在我听到声音后触发)。
我认为这是主线程问题,所以我使用了 performSelectorOnMainThread:
[self performSelectorOnMainThread:@selector(playWakeUpSound)
withObject:nil
waitUntilDone:true];
但这并没有帮助。 (waitUntilDone 的值似乎无关紧要。)
This question很有希望,但我检查了一下,我只调用了我的方法一次。
最佳答案
这只是一个猜测,因为我不知道 playWakeUpSound 中有什么。如果您在该调用和 ARC 中使用 AVAudioPlayer,可能是因为它正在发布。将 AVAudioPlayer 的实例存储为类的成员,它应该播放。
@interface MyClass
{
AVAudioPlayer *player;
}
@end
然后在实现中:
@implementation MyClass
- (void)playWakeUpSound {
// Assuming name and extension is set somewhere.
NSURL* musicFile = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:name ofType:extension]];
NSError* error = nil;
player = [[AVAudioPlayer alloc] initWithContentsOfURL:musicFile error:&error];
if (error) {
NSLog(@"%@", error.localizedDescription);
} else {
[player play];
}
}
@end
关于ios - AudioServicesPlaySystemSound 不播放,除非我跨过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16697560/
我在 GDB 中跨步时遇到了一些麻烦。我已经从 ffmpeg 库构建了一个示例程序,其中调试符号打开并剥离。虽然我将 ffmpeg 库配置为静态并明确禁用共享,但看起来我正在调试的程序是动态链接的,因
在 Python 调试器 (pdb) 中时,我想跳过 yield 语句,但点击 (n) 进行下一步会将我带到 yield 的目的地,即生成器的使用者。我想转到生成器中执行的下一行。有什么办法吗? 我正
我是一名优秀的程序员,十分优秀!