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,
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,
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;
}