Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: IOSのUIViewからアプリケーションドキュメントフォルダに画像を保存する
UIImagePiker(カメラまたはフォトギャラリー)で撮影した画像をプログラムでアプリフォルダーに保存したい。私はiOSプログラミングの初心者です。
画像の保存:
-(void)saveImage:(UIImage*)image { NSString *imagePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/aName.png"]; [UIImagePNGRepresentation(image) writeToFile:imagePath atomically:YES]; }