在iOS8中轻击Swift时,如何隐藏/显示tabBar

前端之家收集整理的这篇文章主要介绍了在iOS8中轻击Swift时,如何隐藏/显示tabBar前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图模仿UINavigationController的新的hidesBarsOnTap与选项卡.我已经看到很多答案,或者指向在一个viewController上设置hidesBottomBarWhenPushed,该控件只会完全隐藏它,而不是在点击时.
@IBAction func tapped(sender: AnyObject) {

    // what goes here to show/hide the tabBar ???


}

提前致谢

编辑:根据下面的建议,我试过

self.tabBarController?.tabBar.hidden = true

确实隐藏了tabBar(轻击切换true / false),但没有动画.我会问一个单独的问题.

解决方法

经过多次狩猎和尝试使用Swift优雅地隐藏/显示UITabBar的各种方法,我可以使用 this great solution by danh并将其转换为Swift:
func setTabBarVisible(visible:Bool,animated:Bool) {

//* This cannot be called before viewDidLayoutSubviews(),because the frame is not set before this time

    // bail if the current state matches the desired state
    if (tabBarIsVisible() == visible) { return }

    // get a frame calculation ready
    let frame = self.tabBarController?.tabBar.frame
    let height = frame?.size.height
    let offsetY = (visible ? -height! : height)

    // zero duration means no animation
    let duration:NSTimeInterval = (animated ? 0.3 : 0.0)

    //  animate the tabBar
    if frame != nil {
        UIView.animateWithDuration(duration) {
            self.tabBarController?.tabBar.frame = CGRectOffset(frame!,offsetY!)
            return
        }
    }
}

func tabBarIsVisible() ->Bool {
    return self.tabBarController?.tabBar.frame.origin.y < CGRectGetMaxY(self.view.frame)
}

// Call the function from tap gesture recognizer added to your view (or button)

@IBAction func tapped(sender: AnyObject) {
    setTabBarVisible(!tabBarIsVisible(),animated: true)
}
原文链接:https://www.f2er.com/iOS/337689.html

猜你在找的iOS相关文章