【发布时间】:2010-02-04 01:04:52
【问题描述】:
我正在用 UIImagePickerController 做一些事情。
它工作正常并且图片浏览器确实打开了,但是,我收到了这条消息。 "未能将视频元数据保存到文件系统。可能信息不符合 plist。"
可能是什么原因造成的?那是由这条线引起的 [自我presentModalViewController:self.imgPicker动画:YES];在单击按钮时激活
我在下面的代码片段。
- (void)viewDidLoad {
self.imgPicker = [[UIImagePickerController alloc] init];
self.imgPicker.allowsImageEditing = YES;
self.imgPicker.delegate = self;
}
- (IBAction)grabImage {
[self presentModalViewController:self.imgPicker animated:YES];
}
谢谢, 三通
【问题讨论】:
-
使用stackoverflow的代码格式化选项。这使事情更具可读性。
标签: iphone objective-c uiimagepickercontroller