嘿,我有一个选择器,它在mainBundle中搜索所有.aif文件,并允许用户选择它们。效果很好,但是后来我从项目和文件夹中删除了一些文件,但是它们并没有消失。有没有办法重新编译它或其他东西,因为它现在困扰着我不需要的声音文件。

谢谢!

- (void)loadPossibleSounds {
    NSBundle *soundBundle = [NSBundle mainBundle];
    possDrumSounds = [soundBundle pathsForResourcesOfType:@"aif" inDirectory:nil];
    NSLog(@"PossDrumSounds: %@", possDrumSounds);
    [possDrumSounds retain];
}

上面是我用来获取充满所有.aif文件路径的数组(possDrumSounds)的代码。再看一遍,可能与我在inDirectory:nil中说过的事实有关,但这无关紧要。

最佳答案

尝试清洁目标并重新构建。

10-06 02:32