use uiimagepicker as main view of the application
More or less, every开发者_如何学Gothing 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;
}
精彩评论