Skip to content

Instantly share code, notes, and snippets.

@chelseatroy
Created January 26, 2017 01:52
Show Gist options
  • Save chelseatroy/11227303a870eecea44b5072c43d1be8 to your computer and use it in GitHub Desktop.
Save chelseatroy/11227303a870eecea44b5072c43d1be8 to your computer and use it in GitHub Desktop.
Load from Storyboard Example iOS
import Foundation
class AppEnvironment: NSObject {
static let sharedEnvironment = AppEnvironment()
let exampleService: ExampleService
override init() {
self.exampleService = ExampleService()
super.init()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment