We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to set default page into App delegate method,I write code but its not properly working.My code like below,
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { let contentViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ContentNavigation"); let contentReportController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ContentNavigationCurrency"); let menuViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "SideBar") if isMultyCurrency == "1" { window = UIWindow(frame: UIScreen.main.bounds) window?.rootViewController = SideMenuController(contentViewController:contentViewController,menuViewController:menuViewController) window?.makeKeyAndVisible() } else { window = UIWindow(frame: UIScreen.main.bounds) window?.rootViewController = SideMenuController(contentViewController:contentReportController,menuViewController:menuViewController) window?.makeKeyAndVisible() } return true }
The text was updated successfully, but these errors were encountered:
@shaikhmoin Your code seems correct.
Sorry, something went wrong.
No branches or pull requests
I want to set default page into App delegate method,I write code but its not properly working.My code like below,
The text was updated successfully, but these errors were encountered: