views:

240

answers:

1

Hello,

More or less, everything is in the title: how to use a UIImagePicker as the main view of the application like for instance for an Augmented Reality App?

Thanks in advance for your help,

Regards,

+1  A: 

This should help you:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
        UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];      
        imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
        imagePicker.showsCameraControls = NO;
        [window addSubview:imagePicker.view];
    }
    [window makeKeyAndVisible];
    return YES;
}
Brad Smith