我已经完成了以下步骤。1.创建了一个xcode项目,并在Supporting Files中创建了一个名为“Images”的文件夹。
将 4 张图像拖放到其中。尝试使用以下代码访问这些文件
NSString *pathString = [[NSBundle mainBundle] pathForResource:@"Images" ofType:nil]; NSArray *fileList = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:pathString error: nil]; NSLog(@"the fileList is %d",[fileList count]);
计数始终为 0。我现在该怎么办?里面有文件,我可以在 imageviews 中使用它。
那么我犯的错误是什么?