fahidattique55 / FAPanels

FAPanels - Swift
Apache License 2.0
851 stars 90 forks source link

Central Panel Need to hide the Menu ICONS #35

Closed mekalasiva closed 6 years ago

mekalasiva commented 6 years ago

How to hide the Central Panel choose hide the Left Menu and Right Menu icons.

fahidattique55 commented 6 years ago

Hi @mekalasiva

Just call the openCenter(animated:Bool) to open the existing centre panel.

fahidattique55 commented 6 years ago

or if you want to change it then use below code,

let panelVC = FAPanelController()
homeVC = UIStoryboard.home.instantiateInitialViewController()
_ = panelVC.center(homeVC!)
window?.rootViewController = panelVC
mekalasiva commented 6 years ago

What is homeVC?is it any class method name?

fahidattique55 commented 6 years ago

Any centre controller you want to assign to centre panel.

fahidattique55 commented 6 years ago

Either a UIViewController, UINavigationController or a UITabBarController etc.