我的资源文件夹中有图像“hit_circle_0.png”到“hit_circle_19.png”,但由于某种原因,这段代码从未通过“找到”的测试令人讨厌的是我有完全相同的函数在它下面的另一种方法中工作. 这些文件在“复制捆绑资源”中
NSMutableArray *hitCircle = [[NSMutableArray alloc]init];
for (int i = 0; i < 20; i++) {
NSString *name = [NSString stringWithFormat:@"hit_circle_%i", i];
NSString *filePath= [[NSBundle mainBundle] pathForResource:name ofType:@"png"];
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]){
NSLog(@"file %@ was found", filePath);
} else{
NSLog(@"%@ not found", filePath);
}
}