after I implemented the ImagePickerController into one of my viewControllers and put that into my TabController I got the following effect when launching. Everything works fine so far.. but.... look at the view:
Thats the code I just implemented therefore:
- (void)loadView{
self.arController = [[IFAugmentRealityController alloc] initWithViewController:self];
[self showCamera];
self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
[self.view addSubview:self.picker.view];
}
The frame is set.. but how do I get rid of the black bar between the picker and the tabbar?
Thank you!!