ソースタイプのカメラに 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 はツールバーです。
誰でも私を助けることができます。