gpt4 book ai didi

objective-c - 在Objective-C中播放字符串数组中的声音

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

我正在尝试创建一个字符串数组,可用于初始化播放声音的网址。如果我按如下所示明确键入文件名,这将起作用,但是如何将特定对象索引处的数组字符串之一插入'fileURLWithPath?

soundsArray = [[NSMutableArray alloc] initWithObjects:@"test", @"test2",@"test3", nil];

NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/test.mp3", [[NSBundle mainBundle] resourcePath]]];

感谢您的见解!

最佳答案

您有一个数组,因此您可能应该遍历该数组,并在每次迭代中提取下一个字符串。您已经知道如何使用stringWithFormat:创建由其他字符串组成的新字符串,就像对资源路径所做的那样。只需使用文件名再次进行即可。 (提示:[NSString stringWithFormat:@"%@/%@.mp3", [[NSBundle mainBundle] resourcePath], nextFileName]。)

关于objective-c - 在Objective-C中播放字符串数组中的声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12202002/

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