gpt4 book ai didi

iphone - 代码以使用iphone上的按钮以编程方式播放声音

转载 作者:行者123 更新时间:2023-12-03 02:27:44 26 4
gpt4 key购买 nike

我试图弄清楚如何在不使用IB的情况下连接按钮以编程方式播放声音。我有播放声音的代码,但是没有办法挂上按钮来播放声音?有什么帮助吗?

这是我正在使用的代码:

     - (void)playSound
{
NSString *path = [[NSBundle mainBundle] pathForResource:@"boing_1" ofType:@"wav"];
AVAudioPlayer* myAudio = [[AVAudioPlayer alloc]
initWithContentsOfURL:[NSURL fileURLWithPath:path error:NULL]];
myAudio.delegate = self;
myAudio.volume = 2.0;
myAudio.numberOfLoops = 1;
[myAudio play];
}

最佳答案

[button addTarget:self action:@selector(playSound) forControlEvents:UIControlEventTouchUpInside];

UIButton从 UIControl继承其target / action方法。

关于iphone - 代码以使用iphone上的按钮以编程方式播放声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2626277/

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