Counter icon indicating copy to clipboard operation
Counter copied to clipboard

A simple example of the VIPER architecture for iOS apps

Results 7 Counter issues
Sort by recently updated
recently updated
newest added

I added logs of interaction in app that make it clearer how it works and refactor xproject files structure, you can see

I´m trying to understand this architecture and was seeing your example and a question arised, Where is the routing tier?

This commit: - fixes warning "Update to recommended settings" in Xcode - remove empty and unused group "CounterTests" in the project

I'm talking about this part: ``` - (void)decrement { if ([self canDecrement]) { --self.count; [self sendCount]; } } ``` Shouldn't the Interactor delegate to a model object in the domain?...

Hi, First of all, I would say big thanks to those which wrote this article and carried out VIPER architecture, this is really great. I try to implement VIPER architecture...