iOS UIImagePickerController有白色方块而不是图标

时间:2014-02-19 16:12:01

标签: ios camera uiimagepickercontroller

我正在使用相机作为我的应用程序但是当我启动它时,相机会显示如下图所示。

enter image description here

这是我用来启动相机应用程序的代码:

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentViewController:picker animated:YES completion:NULL];

为什么相机图标全白?

0 个答案:

没有答案