diff --git a/README.md b/README.md index d6557d7..31635e2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # Xcode-MVP-C-Templates -A few Xcode templates to create MVP-C iOS application +A few Xcode templates to create MVP-C iOS application + +## Installation +To install Xcode templates go to [releases](https://github.com/IrelDev/Xcode-MVP-C-Templates/releases/tag/v1.0) page and download the `MVP-C.zip` you need, unzip & move into `~/Library/Developer/Xcode/Templates` folder. + +## Usage +Open your Xcode project & create new base protocols with `⌘ Cmd + N` and choose `MVP-C Base Protocols`. + +To create MVP-C Module choose `MVP-C Structure` and enter module name. + +For example, a module named `Registration` will create the following files: RegistrationCoordinatorProtocol, RegistrationCoordinator, RegistrationPresenterProtocol, RegistrationPresenter, RegistrationViewController and RegistrationView.