6
บันทึกรูปภาพลงในโฟลเดอร์เอกสารแอปพลิเคชันจาก UIView บน IOS
ฉันมี UIImageView ที่อนุญาตให้ผู้ใช้วางภาพค้างไว้จนกว่าจะสามารถบันทึกได้ ปัญหาคือฉันคิดไม่ออกว่าจะบันทึกและดึงภาพที่ฉันวางไว้ในมุมมองได้อย่างไร ฉันได้ดึงข้อมูลและวางภาพใน UIImageView ดังนี้: //Get Image - (void) getPicture:(id)sender { UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.allowsEditing = YES; picker.sourceType = (sender == myPic) ? UIImagePickerControllerSourceTypeCamera : UIImagePickerControllerSourceTypeSavedPhotosAlbum; [self presentModalViewController:picker animated:YES]; [picker release]; } - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage (UIImage *)image editingInfo:(NSDictionary *)editingInfo { myPic.image …