FAPanels icon indicating copy to clipboard operation
FAPanels copied to clipboard

pushing viewController leftMenu cannot work

Open freddy5566 opened this issue 5 years ago • 1 comments

Hi as title

I follow the example _ = panel!.center(myVC)

It turns out that the center viewController is pushed right, but the leftMenu is not working...

I cannot open leftMenu even called panel?.openLeft(animated: true) I also print panel?.left, and I can get the right menuVC, just cannot use it

do I need to extension other transition stuff?

Here is my setUp inside appDelegate

  private func setUpControllers() {
    window = UIWindow(frame: UIScreen.main.bounds)
    guard let window = window else { fatalError("no windows") }

    let centerVC = UINavigationController(rootViewController: myCenterVC())
    let menuVC = MyMenuVC()

    let rootVC = FAPanelController()
    _ = rootVC.center(centerVC).left(menuVC)

    window.rootViewController = rootVC
  }

thanks

freddy5566 avatar Jan 19 '19 07:01 freddy5566

Hello @fidmor89 , i am facing this issue on my app if i can present controller from the MenuController tableview cell its work fine. But i am using push controller from menu that will be not work.

Thanks

ChetanKailodiaIOS avatar Jul 08 '22 12:07 ChetanKailodiaIOS