作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 5 个选项卡的 UITabBarController。我希望能够在所有选项卡上(位于选项卡栏上方)呈现一个 ViewController。目前我遇到的问题是,当我以模态方式呈现 ViewController 时,它不可见。每当我在 tableView 中选择一行时,都会调用此函数:
调用showPlayerView
的tableView定义如下:
class SearchResultsTableView: UIView, UITableViewDataSource, UITableViewDelegate
searchResultsTableView
类是另一个类中的 View ,定义如下:
TestViewController: UIViewController, UserSearchDelegate, UISearchBarDelegate, UITableViewDelegate, UITableViewDataSource, UINavigationBarDelegate, UINavigationControllerDelegate
这是实际的功能:
func showPlayerView() {
let playerView = PlayerView()
playerView.modalPresentationStyle = .overCurrentContext
CustomTabBarController.sharedInstance?.present(playerView, animated: true, completion: {
})
}
我设置了 CustomTabBarController 共享实例,如下所示:
static var sharedInstance : CustomTabBarController?
在viewDidLoad()
里面我有这个:
CustomTabBarController.sharedInstance = self
为什么我看不到我的模态 ViewController,如何才能让它显示在所有屏幕上?
最佳答案
func showPlayerView() {
let playerView = PlayerView()
playerView.modalPresentationStyle = .overCurrentContext
CustomTabBarController.sharedInstance?.tabBarController?.tabBar.hidden = true // This will hide tab bar of your UITabbarViewController.
CustomTabBarController.sharedInstance?.present(playerView, animated: true, completion: {
})
}
// Make it visible in ViewWillApear method by below line
CustomTabBarController.sharedInstance?.tabBarController?.tabBar.hidden = false
关于ios - 如何在 TabBarController 中的所有 VC 上呈现 modalViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47006530/
我是一名优秀的程序员,十分优秀!