UIImagePicker コントローラーを呼び出します。カメラ ボタンをクリックすると、プレビューと使用ボタンのみが表示され、画像がフォト アルバムに保存されません。
コード:
-(void)viewDidAppear:(BOOL)animated{
picker = [[UIImagePickerController alloc] init];
// Set the image picker source:
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
// Hide the controls:
picker.showsCameraControls = YES;
picker.navigationBarHidden = YES;
// Make camera view full screen:
picker.wantsFullScreenLayout = YES;
// Insert the overlay:
picker.cameraOverlayView = self.view;
self.view.backgroundColor=[UIColor clearColor];
// Show the picker:
[self presentModalViewController:picker animated:YES];
}