在我将 ImagePickerController 实现到我的一个 viewController 中并将其放入我的 TabController 之后,我在启动时得到了以下效果。到目前为止一切正常..但是..看看视图:
这就是我刚刚实现的代码:
- (void)loadView{
self.arController = [[IFAugmentRealityController alloc] initWithViewController:self];
[self showCamera];
self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
[self.view addSubview:self.picker.view];
}
框架已设置..但是如何摆脱选择器和标签栏之间的黑条?
谢谢!!