SlowKit 0.0.2

SlowKit 0.0.2

Maintained by Alexander Volokhin.



SlowKit 0.0.2

  • By
  • a.volokhin

SlowKit

Simple yet powerful MVVM framework for fast iOS develompent.

Example

To run the example project, clone the repo, and run pod install from the Example directory.

Dependency Injection

DI Container creation

let container = Container()

Register per request

container.register(IService.self)
	.withInit(Service.init)

let service = container.resolve(IService.self)

Register single instance

container.register(IService.self)
	.withInit(Service.init)
	.singleInstance()

let service = container.resolve(IService.self)

Installation

SlowKit is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'SlowKit'

Author

Alexander Volokhin, [email protected]

License

SlowKit is available under the MIT license. See the LICENSE file for more info.