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