You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//
// AppDelegate.swift
//
import UIKit
import SlideMenuControllerSwift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
@objc var homeStoryboard : AnyObject?
@objc var loginStoryboard : AnyObject?
fileprivate func createMenuView() {
let homeViewController = homeStoryboard?.instantiateViewController(withIdentifier: "HomeViewController") as! HomeViewController
let sideMenuViewController = homeStoryboard?.instantiateViewController(withIdentifier: "SideMenuViewController") as! SideMenuViewController
let nvc: UINavigationController = UINavigationController(rootViewController: homeViewController)
UINavigationBar.appearance().tintColor = UIColor.white
UINavigationBar.appearance().barTintColor = UIColor.darkGray
sideMenuViewController.homeViewController = nvc
let slideMenuController = ExSlideMenuController(mainViewController:nvc, leftMenuViewController: sideMenuViewController)
SlideMenuOptions.contentViewScale = 1
slideMenuController.delegate = homeViewController as? SlideMenuControllerDelegate
self.window?.backgroundColor = UIColor(red: 236.0, green: 238.0, blue: 241.0, alpha: 1.0)
self.window?.rootViewController = slideMenuController
self.window?.makeKeyAndVisible()
}
func logout() {
let loginViewController = loginStoryboard?.instantiateViewController(withIdentifier: "Login") as? LoginViewController
if self.window?.rootViewController?.presentedViewController != nil {
self.window?.rootViewController?.dismiss(animated: false)
}
if let loginViewController = loginViewController {
self.window?.rootViewController?.present(loginViewController, animated: false, completion: nil)
}
}
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
self.createMenuView()
return true
}
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
}
How inject storyboard in swift. Why homestory board object is getting null in AppDelegate?
The text was updated successfully, but these errors were encountered:
Hm.. Your assemblies looks right from first sight. I believe it worked for objc. Try to debug it via Xcode debugger. Look at TyphoonStartup.m source, and put breakpoint at line 119. Make sure that initialFactory and initialAppDelegate are not nil and line 128 runs.
Storyboard inject is not working in swift. Always I'm getting null.
I have created two Assembiles (Application and Presentation) and added into plist.
How inject storyboard in swift. Why homestory board object is getting null in AppDelegate?
The text was updated successfully, but these errors were encountered: