Xcode 6.4, Swift is developing an ios app.
I am using Swift's library "PageMenu".
NextView without FirstView→ PegeMenu using PageMenu
Unable to transition to
UIButton is installed in FirstView and
when tap action is performed
self.navigationController?pushViewController(NextView(), animated:true)
So, I want to transition, but nothing happens when I tap the button.
varmodalView=UINavigationController (rootViewController:NextView())
modalView.modalTransitionStyle=UIModalTransitionStyle.CoverVertical
self.presentViewController(modalView, animated:true, completion:nil)
If so, you can transition to modal, but if it is modal, you can transition to NextView
self.dismissViewControllerAnimated (true, completion:nil)
When you close the modal in , the PegeMenu tab bar installed in FirstView hides behind the NavigationBar.(Normal: PageMenu tab under NavigationBar)
Is there any solution?
Thank you for your cooperation.
In case of modal transition
varmodalView=UINavigationController (rootViewController:NextView())
modalView.modalTransitionStyle=UIModalTransitionStyle.CoverVertical
self.view.window?.rootViewController!.presentViewController(modalView, animated:true, completion:nil)
So, when I come back from NextView, the layout doesn't get corrupted.
Transitions using NavigationController are unresolved.
566 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
606 Uncaught (inpromise) Error on Electron: An object could not be cloned
884 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
572 Understanding How to Configure Google API Key
596 GDB gets version error when attempting to debug with the Presense SDK (IDE)
© 2024 OneMinuteCode. All rights reserved.