Skip to content
New issue

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

TyphoonStoryboard swift not working #603

Open
yalamandarao opened this issue Jun 22, 2019 · 1 comment
Open

TyphoonStoryboard swift not working #603

yalamandarao opened this issue Jun 22, 2019 · 1 comment

Comments

@yalamandarao
Copy link

yalamandarao commented Jun 22, 2019

Storyboard inject is not working in swift. Always I'm getting null.

I have created two Assembiles (Application and Presentation) and added into plist.

//
//  Application.swift
//

import UIKit
import Typhoon

class Application: TyphoonAssembly {

    func appDelegate() -> AnyObject {
        return TyphoonDefinition.withClass(AppDelegate.self, configuration: { definition in
            definition!.injectProperty(#selector(setter: AppDelegate.homeStoryboard), with: self.homeStoryboard())
            definition!.injectProperty(#selector(setter: AppDelegate.loginStoryboard), with: self.loginStoryboard())
        }) as AnyObject
    }



    
    @objc func homeStoryboard() -> AnyObject {
        return TyphoonDefinition.withClass(TyphoonStoryboard.self, configuration: { (definition) in
            definition?.useInitializer(#selector(TyphoonStoryboard.init(name:factory:bundle:)), parameters: { initializer in
                initializer!.injectParameter(with: "Home")
                initializer!.injectParameter(with: self)
                initializer!.injectParameter(with: Bundle.main)
            })
        }) as AnyObject

    }
    
    
    @objc func loginStoryboard() -> AnyObject {
        return TyphoonDefinition.withClass(TyphoonStoryboard.self, configuration: { (definition) in
            definition?.useInitializer(#selector(TyphoonStoryboard.init(name:factory:bundle:)), parameters: { initializer in
                initializer!.injectParameter(with: "Login")
                initializer!.injectParameter(with: self)
                initializer!.injectParameter(with: Bundle.main)
            })
        }) as AnyObject
        
    }

    @objc func aboutStoryboard() -> AnyObject {
        return TyphoonDefinition.withClass(TyphoonStoryboard.self, configuration: { (definition) in
            definition?.useInitializer(#selector(TyphoonStoryboard.init(name:factory:bundle:)), parameters: { initializer in
                initializer!.injectParameter(with: "About")
                initializer!.injectParameter(with: self)
                initializer!.injectParameter(with: Bundle.main)
            })
        }) as AnyObject
        
    }

    
}

//
//  Presentation.swift
//

import UIKit
import Typhoon

class Presentation: TyphoonAssembly {

     private var application: Application!
    
    func sideMenuViewController() -> SideMenuViewController? {
        return TyphoonDefinition.withClass(SideMenuViewController.self, configuration: { (definition) in
            definition?.injectProperty(#selector(setter: SideMenuViewController.homeStoryboard), with: self.application.homeStoryboard)
             definition?.injectProperty(#selector(setter: SideMenuViewController.aboutStoryboard), with: self.application?.aboutStoryboard)
          
        }) as? SideMenuViewController
    }
    
    func homeViewController() -> HomeViewController? {
        return TyphoonDefinition.withClass(HomeViewController.self, configuration: { (definition) in
            
        }) as? HomeViewController
    }
    
    func aboutViewController() -> AboutViewController? {
        return TyphoonDefinition.withClass(AboutViewController.self, configuration: { (definition) in
            
        }) as? AboutViewController
    }
    
    
}

//
//  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?

@alexgarbarev
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants