我正在开发一个具有自定义相机控制视图的项目。我查看了苹果的文档并尝试围绕文档编写代码。现在笔尖没有加载,但相机正在出现。
这是我得到的代码:
- (void)viewDidAppear:(BOOL)animated{
UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext;
imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
imagePickerController.delegate = self;
imagePickerController.showsCameraControls = NO;
[[NSBundle mainBundle] loadNibNamed:@"cameraView" owner:self options:nil];
self.overlayView.frame = imagePickerController.cameraOverlayView.frame;
imagePickerController.cameraOverlayView = self.overlayView;
self.overlayView = nil;
self.imagePickerController = imagePickerController;
[self presentViewController:self.imagePickerController animated:YES completion:nil];
}
我确实确保将我的课程UIImagePickerControllerDelegate
与UINavigationControllerDelegate
.
另外,我使用的是 iOS 7,所以如果这是兼容性问题,请告诉我。没有任何代码提示我的代码已折旧并且应用程序不会崩溃的警告。它显示来自我的相机的图像,但不显示笔尖。
编辑 我知道我应该检查设备是否有摄像头,但现在我只想确保我可以先让摄像头工作。可能不是我最好的选择,但不幸的是,这就是我的思维方式,如果我不让它工作,我会发疯的。