UIImagepickerController strange bug
Posted
by Rahul Vyas
on Stack Overflow
See other posts from Stack Overflow
or by Rahul Vyas
Published on 2010-04-19T05:21:42Z
Indexed on
2010/04/19
5:23 UTC
Read the original article
Hit count: 458
uiimagepickercontroller
|iphone-sdk-3.0
Hi,
I'm doing something with UIImagePickerController.
It works fine and the Picture browser does open, however, I get this message. "Failed to save the videos metadata to the filesystem. Maybe the information did not conform to a plist."
What could be causing that? That is caused by this line [self presentModalViewController:self.imgPicker animated:YES]; which is activated on a button click
Snippets of the code that I have below.
- (void)viewDidLoad {
self.imgPicker = [[UIImagePickerController alloc] init];
self.imgPicker.allowsImageEditing = YES;
self.imgPicker.delegate = self;
}
- (IBAction)grabImage {
[self presentModalViewController:self.imgPicker animated:YES];
}
it's also removing images from documents directory and from resources folder. I can not understand why? does someone found the solution to this?
© Stack Overflow or respective owner