I’m trying to make an augmented reality application with a waypoint structure, like Yelp, and I’m wondering how to set up my main view so that it displays the camera view on the whole screen. I’ve heard of using the UIImagePickerController Class, but I’m unsure how to manipulate the code so that it doesn’t actually take a picture, but just stays in the view mode. Any help would be appreciated, thanks!
I’m trying to make an augmented reality application with a waypoint structure, like Yelp,
Share
From the documentation:
http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html
You should just be able to create a UIImagePickerController and set sourceType to UIImagePickerControllerSourceTypeCamera, and then disable the camera controls using showsCameraControls.