にあるフォルダから画像を取得したいNSLibraryDirectory
。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [[paths objectAtIndex:0] stringByAppendingPathComponent:[NSString stringWithFormat:str]];
NSString *getImagePath = [documentsDirectory stringByAppendingPathComponent: [@"images" stringByAppendingFormat:@"%d",[[NSUserDefaults standardUserDefaults] integerForKey:@"HighScore"]] stringByAppendingFormat:@".png"];
img = [UIImage imageWithContentsOfFile:getImagePath];
NSLog(@"img:%@", img);
これは私が使用しているコードです
getImagePath の印刷の説明:
/Users/Admin/Library/Application Support/iPhone Simulator/5.0/Applications/6842528E-9629-4DE7-96C1-A46AEB8A8EE0/ライブラリ/Thapa
そのはず:
getImagePath の印刷の説明:
/Users/Admin/Library/Application Support/iPhone Simulator/5.0/Applications/6842528E-9629-4DE7-96C1-A46AEB8A8EE0/ライブラリ/Thapa/images47.png
これを達成する方法がわからない、私が試したことは上記です。
前もって感謝します