我有一个 UIImagePickerController ,在源类型的相机中。有时相机快门没有打开,但我可以拍照。
有时它工作正常?
我使用 UIImagePickerController 的子类
- (id)init{
self = [super init];
if (self) {
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]){
[self setSourceType:UIImagePickerControllerSourceTypeCamera];
self.showsCameraControls =NO;
[self setWantsFullScreenLayout:YES];
self.cameraOverlayView = bottomToolBar;
self.cameraOverlayView = topToolBar;
}
else{
[self setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
}
}
}
bottomToolBar 和 topToolBar 是工具栏。
任何人都可以帮助我。