gpt4 book ai didi

ios - 'AVAudioPlayer declares the selector initWithUrl:' 没有可见界面

转载 作者:行者123 更新时间:2023-11-28 22:19:09 25 4
gpt4 key购买 nike

我正在尝试播放按钮点击声音,而且我应该能够管理点击声音以及音量按钮。

我所做的是 将 AVFoundationFramework 添加到项目中,

在.h文件中

#import <AVFoundation/AVAudioPlayer.h>
#import <AVFoundation/AVFoundation.h>

.m文件中按钮点击方法

NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"sound1" ofType:@"mp3"];
NSURL *soundUrl = [NSURL fileURLWithPath:soundPath];

AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithURL:soundUrl];

[player play];

但我收到上述错误。任何帮助将不胜感激。

最佳答案

"initWithContentsOfURL:"不是“initWithURL:”。

如:

AVAudioPlayer *player = [[AVAudioPlayer alloc] 
initWithContentsOfURL:soundUrl];

关于ios - 'AVAudioPlayer declares the selector initWithUrl:' 没有可见界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20878257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com