gpt4 book ai didi

arrays - 在不同位置调用声音阵列的最佳方法是什么?

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

我的代码:

//Get the filename of the sound file:
NSString *path = [[NSBundle mainBundle] pathForResource: [finalArray objectAtIndex:s] ofType:@"wav"];
//declare a system sound id
SystemSoundID soundID;

//Get a URL for the sound file
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];

//Use audio sevices to create the sound
AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID);

//Use audio services to play the sound
AudioServicesPlaySystemSound(soundID);

如您所见,我使用了一个 finalArray数组,该数组保存着文本文件中的值。我想在 loadView + nextButton + PreButton的代码的三个位置播放声音。

我必须在三个地方加载相同的代码吗?还是我可以将其变成只能调用三次的方法?

最佳答案

无需回答,我认为最好的方法就是使用如下方法调用它:

-(void) sound:(NSUInteger)s_obj;

所以谢谢你我自己尝试过
[self sound:s];

关于arrays - 在不同位置调用声音阵列的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5572400/

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