第一个屏幕截图是在全屏播放视频之前拍摄的.
第二个是在视频全屏打开并关闭后拍摄的.
知道为什么导航工具栏有扩展吗?
注意:汉堡包按钮不是导航项目的一部分.它在父级的覆盖中伪造,将其子控制器保存在标准容器中.
源内没有什么特别之处:
override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. bbiListic = UIBarButtonItem(image: UIImage(identifier: .IcoHeaderListic),style: .Plain,target: self,action: #selector(UIViewController.showListic)) bbiFavorite = UIBarButtonItem(image: UIImage(identifier: .IcoHeaderStarEmpty),action: #selector(LiveDogadjajViewController.toggleFavorite(_:))) ... let items = [bbiListic!,bbiFavorite!] navigationItem.rightBarButtonItems = items } func someRefresh() { var items = [UIBarButtonItem]() items.append(bbiListic!) ... navigationItem.rightBarButtonItems = items }
更新:
这似乎仅在最新版本的iOS 9.3上存在问题
解决方法
从截图中看,状态栏的高度看起来会加倍.试试这个:-
在播放视频之前,请隐藏状态栏
UIApplication.sharedApplication().setStatusBarHidden(true,withAnimation: .None)
结束视频后,显示状态栏
UIApplication.sharedApplication().setStatusBarHidden(false,withAnimation: .None)