##Concepts:
VIPER-Generics-Generator
Automatic generator of classes with protocols to comunicate over VIPER
Based on templates created on Clean Swift by @rayvinly
With the concepts of VIPER from objc.io
##Install:
- Open terminal and do next commands
cd Templates && make install_templates
- Add the file RoutingProtocol.swift to your project
- New File and select VIPER Scene and NEXT
- Choose name and finalize
- Configure your appDelegate to load your routing or see the example project
self.window = UIWindow()
self.window!.frame = UIScreen.main.bounds
let routing = ViperRouting()
try! routing.loadFromWindow(window: window!)
self.window!.makeKeyAndVisible()
- See our example project to understand.