我必须在tabbar下提供一个模态VC。我必须从tabbar控制器中显示它
player.modalPresentationStyle = UIModalPresentationOverCurrentContext;
[self presentViewController:player animated:YES completion:^{
[self.view bringSubviewToFront:self.tabBar];
}];
那是我的代码。在这种情况下,我的模型VC覆盖了tabbar。有办法解决这个问题吗?