Resources フォルダーの各サブフォルダーにいくつの画像があるかを知る必要があります。私はこれを見つけました:
NSMutableString* bundlePath = [NSMutableString stringWithCapacity:4];
[bundlePath appendString:[[NSBundle mainBundle] bundlePath]];
[bundlePath appendString:@"/MyFolder"];
NSArray *directoryContent = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:bundlePath error:nil];
int numberOfFileInFolder = [directoryContent count];
この:
int pants = [[[NSFileManager defaultManager] contentsOfDirectoryAtPath:@"/your/path/here" error:NIL] count];
最善の方法は何ですか?
解決:
int numberOfFileInFolder = [[[NSFileManager defaultManager] contentsOfDirectoryAtPath:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"/Angry"] error:Nil] count];
ファイルをコピーするときは注意してください!!! 「追加されたフォルダーのフォルダー参照を作成する」をチェックすることを忘れないでください