I'm using the following code to launch the still camera on the iPhone.
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
picker.delegate = self;
[self presentModalViewController:picker animated:YES];
[picker release];
I'm wondering how I can launch only the video camera, and not the still camera. I need this view without the switch in the bottom right.
Any ideas?
