gpt4 book ai didi

ios - 如何播放声音文件 "OnTouch"

转载 作者:行者123 更新时间:2023-11-29 04:42:16 26 4
gpt4 key购买 nike

我需要在触摸屏幕时播放文件。

我尝试了以下方法,但没有成功:

-(IBAction)play;
{
CFBundleRef mainBundle = CFBundleGetMainBundle();

CFURLRef soundFileURLRef;

soundFileURLRef =CFBundleCopyResourceURL(mainBundle,
(CFStringRef) @"sound1", CFSTR ("wav"), NULL);

UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
AudioServicesPlaySystemSound(soundID);
}

最佳答案

您是否在窗口或主视图上添加了触摸处理程序?

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
[yourObject play];
}

关于ios - 如何播放声音文件 "OnTouch",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10211649/

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