我遇到过这样的情况,我使用了下面的代码成功地为我工作:
extension UITabBarController {
func setTabBarVisible(visible:Bool, duration: TimeInterval = 0.20, animated:Bool) {
if (tabBarIsVisible() == visible) { return }
let frame = self.tabBar.frame
let height = frame.size.height
let offsetY = (visible ? -height : height)
let duration = animated ? duration : 0
var safeAreaInset:CGFloat = 0
if #available(iOS 11, *) {
safeAreaInset = UIApplication.shared.keyWindow?.safeAreaInsets.bottom ?? 0
safeAreaInset += visible ? (UIApplication.shared.keyWindow?.safeAreaInsets.top ?? 0) : 0
}
if !visible, let window = self.view.window {
if let view = window.viewWithTag(999) {
view.removeFromSuperview()
}
let view = UIView()
view.translatesAutoresizingMaskIntoConstraints = false
window.insertSubview(view, at: 0)
view.tag = 999
view.leadingAnchor.constraint(equalTo: window.leadingAnchor).isActive = true
view.trailingAnchor.constraint(equalTo: window.trailingAnchor).isActive = true
view.bottomAnchor.constraint(equalTo: window.bottomAnchor).isActive = true
view.heightAnchor.constraint(equalToConstant: safeAreaInset).isActive = true
view.backgroundColor = .white
window.sendSubview(toBack: view)
}
let viewFrame = CGRect(x:self.view.frame.origin.x,y:self.view.frame.origin.y,width: self.view.frame.width, height: (self.view.frame.height + offsetY - safeAreaInset))
// animation
UIView.animate(withDuration: duration, animations: {
self.tabBar.frame.offsetBy(dx:0, dy:offsetY)
self.view.frame = viewFrame
self.view.setNeedsLayout()
self.view.layoutIfNeeded()
}) { (finished) in
if finished {
if let view = self.view.window?.viewWithTag(999) {
self.view.window?.sendSubview(toBack: view)
}
}
}
}
func tabBarIsVisible() ->Bool {
return self.tabBar.frame.origin.y < UIScreen.main.bounds.height
}
}
你可以这样使用它:
有一个局部变量,它将存储可见性状态并在设置时更新标签栏:
var tabbarHidden = false {
didSet {
self.tabbarController.setTabBarVisible(visible: !tabbarHidden, animated: false)
self.tabbarController.tabBar.isHidden = tabbarHidden
}
}
具有设置标签栏可见性的功能:
func setTabbarVisibility() {
if !((self.tabbarController.selectedViewController as? UINavigationController)?.topViewController?.hidesBottomBarWhenPushed ?? false) {
let count = Globals.sharedInstance.currentEvent?.bottom.count ?? 0
self.tabbarHidden = count == 0
}
}
在viewWillAppear 和viewDidLayoutSubviews 中调用此函数以更新它,因为设置来自服务器。