Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About the hidden problems #8

Closed
Pijulin opened this issue Jan 14, 2015 · 4 comments
Closed

About the hidden problems #8

Pijulin opened this issue Jan 14, 2015 · 4 comments
Assignees

Comments

@Pijulin
Copy link

Pijulin commented Jan 14, 2015

I set hidesBottomBarWhenPushed is YES.It's display like this.I want to hide it, can you tell me what should I do?
ios simulator screen shot 2015 1 14 1 59 17

@primeobsession
Copy link

You ever get feedback on this?

@Pijulin Pijulin closed this as completed Feb 27, 2015
@zipme
Copy link

zipme commented Mar 20, 2015

Why is this closed?

@azfx
Copy link

azfx commented Mar 20, 2015

override func viewWillAppear(animated: Bool) {
     super.viewWillAppear(animated)
     self.hideTabBar(true)
}

override func viewWillDisappear(animated: Bool) {
     super.viewWillDisappear(animated)
     self.hideTabBar(false)
}

func hideTabBar(flag:Bool) { 
        let atc = self.tabBarController as RAMAnimatedTabBarController
        let icons  = atc.iconsView

        if (flag == true ) {
            atc.tabBar.hidden = true
            for icon in icons {
                icon.icon.hidden = true
                icon.textLabel.hidden = true
            }
        } else {
            atc.tabBar.hidden = false
            for icon in icons {
                icon.icon.hidden = false
                icon.textLabel.hidden = false
           }
       }
 }

@furiosFast
Copy link

same problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants