-2
my-image
という名前の画像があります。このイメージをアプリケーションバンドルに保存できますか?はいの場合は、コードまたはパスを入力してください。それがないアプリケーションバンドルにファイルをアプリケーションバンドルに保存するには
/Users/tsplmac01/Library/Application Support/iPhone Simulator/4.3/Applications/BC5DE1D8-B875-44BC-AC74-04A17329F29A/.
&に保存しているが
NSData * imageData = UIImagePNGRepresentation(userSavedImage); //convert image into .png format.
NSFileManager * fileManager = [NSFileManager defaultManager];//create instance of NSFileManager
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); //create an array and store result of our search for the documents directory in it
NSString * documentsDirectory = [paths objectAtIndex:0]; //create NSString object, that holds our exact path to the documents directory
NSString * fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.png",txtImageName.text]]; //add our image to the path
[fileManager createFileAtPath:fullPath contents:imageData attributes:nil]; //finally save the image
NSLog(@"image saved");
-
今のところ、私は次のコードを持っています。どうすればいいのか教えてください。
Hey Sharmain、それを検索することも考えましたか? – vikingosegundo
[アプリケーションバンドルのファイルへの書き込みに問題があります](http://stackoverflow.com/questions/3564153/problem-in-writing-to-a-file-in-application-bundle) – vikingosegundo