我正在尝试制作一个简单的应用程序来拍照并将文件保存到 UIImageview 和文档文件夹中,以便以后可以将其作为 UIImageview 调用。为了了解应用程序是否真的在制作文件,我打开了应用程序支持 .plist 文件中的 iTunes 文件共享。
问题是生成的文件是零字节。我试过PNG和JPG格式。
- (IBAction)picImage:(id)sender {
imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
//check to see if the device has camera capability
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
{
    imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
}
else
{
    imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
}
[self presentViewController:imagePicker animated:YES completion:nil];
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    //set the UIImageView to the selected image
    playerImage.image = [info objectForKey:UIImagePickerControllerOriginalImage];
    //obtaining saving path
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *imagePath = [documentsDirectory stringByAppendingPathComponent:@"player.png"];
    UIImage *editedImage = [UIImage imageWithContentsOfFile:imagePath];
    NSData *imageData = UIImagePNGRepresentation(editedImage);
    //NSData *imageData = UIImageJPEGRepresentation(editedImage,1.0);
    // This actually creates the image at the file path specified, with the image's NSData.
   [[NSFileManager defaultManager] createFileAtPath:imagePath contents:imageData attributes:nil];
    //dismiss the imagepicker view controller
    [self dismissViewControllerAnimated:YES completion:nil];
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
[self dismissViewControllerAnimated:YES completion:nil];
}