Tuesday, May 26, 2026
HomeiOS DevelopmentEasy methods to construct SwiftUI apps utilizing VIPER?

Easy methods to construct SwiftUI apps utilizing VIPER?

[ad_1]

On this tutorial I am going to present you find out how to mix SwiftUI with the VIPER structure in an actual world iOS utility instance.

VIPER

SwiftUI – the brand new child on the block

There are actually a whole lot of SwiftUI tutorials across the internet, however I used to be solely capable of finding only one or two that focuses on actual world use circumstances as a substitute of the smaller particulars like find out how to configure / make X in SwiftUI. Good tutorials @mecid stick with it!

I additionally had my very own “battle” with SwiftUI, as a result of my assortment view framework is structured precisely the identical approach as you write SwiftUI code. After WWDC I used to be like, hell no! I am doing the identical methodology for months now, so why ought to I care? I began to imagine that some Apple engineers are studying my weblog. 😂

Anyway I knew at day zero {that a} loopy quantity of latest SwiftUI tutorials will arrive and everybody shall be hyped concerning the new declarative UI framework, however actually I already had my common toolkit for this function. That is why I do not wished to write down about it. Actually I nonetheless love Mix rather more than SwiftUI. I am additionally fairly disillusioned since CollectionView is totally lacking from the framework.

Lastly, simply because what the heck lets strive new issues and I used to be interested by how SwiftUI can match into my app constructing methodology I began to create a brand new VIPER template primarily based on these form of views. I additionally wished to make a helpful, scalable, modular actual world utility instance utilizing the brand new framework, which is up-to-date. Loads has modified in SwiftUI in the course of the Xcode 11 beta interval, in order that’s why I am solely publishing this tutorial now. Sufficient chatter, should not we code already? 😛



Be taught a contemporary VIPER structure

I’ve spent my final two years utilizing the VIPER structure. Some individuals say “it is approach too advanced” or “it isn’t a very good match for small groups”. I can solely inform them one phrase:

Bullshit!

I imagine that I’ve created a contemporary & comparatively easy sample that can be utilized for actually something. Studying VIPER will certainly enhance your code high quality because of the clear structure and the SOLID rules. You may have a greater understanding of how smaller items can work collectively and talk with one another.

Remoted smaller parts can velocity up growth, since you simply should work on somewhat piece directly, plus you’ll be able to create exams for that specific factor, which is a large win for testability & code protection (you do not have to run your app on a regular basis if you wish to take a look at one thing, you’ll be able to work on the module you simply want).

I am often working with a very easy code generator to fireside up new modules, this manner I can save quite a lot of time. If you must work alone on a challenge the module generator and the predefined construction may even prevent some extra time. Additionally you actually cannot mess up issues or find yourself with huge information if you’re following the essential VIPER guidelines. I am going to educate you my methodology in about 10 minutes. ⏰


What the heck is VIPER anyway?

Should you by no means heard about VIPER earlier than, the very first thing you need to know is {that a} VIPER module accommodates the next parts:

  • View = UIViewController subclass or SwiftUI View
  • Interactor = Gives the required information within the correct format
  • Presenter = UI impartial enterprise logic (what to do precisely)
  • Entity = Information objects (typically it is lacking from the module)
  • Router = Builds up the view controller hierarchy (present, current, dismiss, and many others)

I all the time have a module file subsequent to those ones the place I outline a module builder which builds up the entire thing from the parts above and in that file I additionally outline the module particular protocols. I often identify these protocols as interfaces they make it potential that any of the parts may be changed utilizing dependency injection. This fashion we will take a look at something through the use of mocked objects in our unit exams.

Some say {that a} VIPER module with a Builder known as VIPER/B. I believe the module file is a perfect place to retailer your module builder object, the module interfaces and the module delegate when you want one.


Protocol oriented VIPER structure

So the secret’s the 6 predominant protocol that connects View-Interactor-Presenter-Router. These protocols be sure that not one of the VIPER parts can see greater than it is required. Should you return to my first tutorial you may see that I made a mistake there. The factor is you can name a technique on the router via the presenter from the view, which is dangerous. This new method fixes that concern. 🐛


View-to-Presenter
Presenter-to-View

Router-to-Presenter
Presenter-to-Router

Interactor-to-Presenter
Presenter-to-Interactor


Module

builds up pointers and returns a UIViewController


View implements View-to-Presenter

robust presenter as Presenter-to-View-interface


Presenter implements Presenter-to-Router, Presenter-to-Interactor, Presenter-to-View

robust router as Router-to-Presenter-interface
robust interactor as Interactor-to-Presenter-interface
weak view as View-to-Presenter-interface


Interactor implements Interactor-to-Presenter

weak presenter as Presenter-to-Interactor-interface


Router implemenents Presenter-to-Router

weak presenter as Presenter-to-Router-interface


As you’ll be able to see the view (which could be aUIViewController subclass) holds the presenter strongly and the presenter will retain the interactor and router courses. Every part else is a weak pointer, as a result of we do not like retain cycles. It would appears somewhat bit difficult at first sight, however after writing your first few modules you may see how good is to separate logical parts from one another. 🐍

Please notice that not every little thing is a VIPER module. Do not attempt to write your API communication layer or a CoreLocation service as a module, as a result of these form of stuff are standalone as an instance: companies. I am going to write about them within the subsequent one, however for now let’s simply give attention to the anatomy of a VIPER module.


Generic VIPER implementation in Swift 5

Are you prepared to write down some Swift code? All proper, let’s create some generic VIPER interfaces that may be prolonged in a while, do not be afraid will not be that arduous. 😉




public protocol RouterPresenterInterface: class {

}

public protocol InteractorPresenterInterface: class {

}

public protocol PresenterRouterInterface: class {

}

public protocol PresenterInteractorInterface: class {

}

public protocol PresenterViewInterface: class {

}

public protocol ViewPresenterInterface: class {

}



public protocol RouterInterface: RouterPresenterInterface {
    associatedtype PresenterRouter

    var presenter: PresenterRouter! { get set }
}

public protocol InteractorInterface: InteractorPresenterInterface {
    associatedtype PresenterInteractor

    var presenter: PresenterInteractor! { get set }
}

public protocol PresenterInterface: PresenterRouterInterface & PresenterInteractorInterface & PresenterViewInterface {
    associatedtype RouterPresenter
    associatedtype InteractorPresenter
    associatedtype ViewPresenter

    var router: RouterPresenter! { get set }
    var interactor: InteractorPresenter! { get set }
    var view: ViewPresenter! { get set }
}

public protocol ViewInterface: ViewPresenterInterface {
    associatedtype PresenterView

    var presenter: PresenterView! { get set }
}

public protocol EntityInterface {

}



public protocol ModuleInterface {

    associatedtype View the place View: ViewInterface
    associatedtype Presenter the place Presenter: PresenterInterface
    associatedtype Router the place Router: RouterInterface
    associatedtype Interactor the place Interactor: InteractorInterface

    func assemble(view: View, presenter: Presenter, router: Router, interactor: Interactor)
}

public extension ModuleInterface {

    func assemble(view: View, presenter: Presenter, router: Router, interactor: Interactor) {
        view.presenter = (presenter as! Self.View.PresenterView)

        presenter.view = (view as! Self.Presenter.ViewPresenter)
        presenter.interactor = (interactor as! Self.Presenter.InteractorPresenter)
        presenter.router = (router as! Self.Presenter.RouterPresenter)

        interactor.presenter = (presenter as! Self.Interactor.PresenterInteractor)

        router.presenter = (presenter as! Self.Router.PresenterRouter)
    }
}


Related varieties are simply placeholders for particular varieties, through the use of a generic interface design I can assemble my modules with a generic module interface extension and if some protocol is lacking the app will crash simply as I attempt to initialize the dangerous module.

I like this method, as a result of it saves me from quite a lot of boilerplate module builder code. Additionally this manner every little thing may have a base protocol, so I can prolong something in a very neat protocol oriented approach. Anyway when you do not perceive generics that is not a giant deal, within the precise module implementation you’ll barely meet them.

So how does an precise module seems like?




protocol TodoRouterPresenterInterface: RouterPresenterInterface {

}



protocol TodoPresenterRouterInterface: PresenterRouterInterface {

}

protocol TodoPresenterInteractorInterface: PresenterInteractorInterface {

}

protocol TodoPresenterViewInterface: PresenterViewInterface {

}



protocol TodoInteractorPresenterInterface: InteractorPresenterInterface {

}



protocol TodoViewPresenterInterface: ViewPresenterInterface {

}




closing class TodoModule: ModuleInterface {

    typealias View = TodoView
    typealias Presenter = TodoPresenter
    typealias Router = TodoRouter
    typealias Interactor = TodoInteractor

    func construct() -> UIViewController {
        let view = View()
        let interactor = Interactor()
        let presenter = Presenter()
        let router = Router()

        self.assemble(view: view, presenter: presenter, router: router, interactor: interactor)

        router.viewController = view

        return view
    }
}




closing class TodoPresenter: PresenterInterface {
    var router: TodoRouterPresenterInterface!
    var interactor: TodoInteractorPresenterInterface!
    weak var view: TodoViewPresenterInterface!
}

extension TodoPresenter: TodoPresenterRouterInterface {

}

extension TodoPresenter: TodoPresenterInteractorInterface {

}

extension TodoPresenter: TodoPresenterViewInterface {

}



closing class TodoInteractor: InteractorInterface {
    weak var presenter: TodoPresenterInteractorInterface!
}

extension TodoInteractor: TodoInteractorPresenterInterface {

}



closing class TodoRouter: RouterInterface {
    weak var presenter: TodoPresenterRouterInterface!
    weak var viewController: UIViewController?
}

extension TodoRouter: TodoRouterPresenterInterface {

}



closing class TodoView: UIViewController, ViewInterface {
    var presenter: TodoPresenterViewInterface!
}

extension TodoView: TodoViewPresenterInterface {

}


A VIPER module is made out of 5 information, which is a large enchancment in comparison with my outdated methodology (I used 9 information for a single module, which remains to be higher than a 2000 strains of code huge view controller, however yeah it was fairly many information… 😂 ).

You need to use my VIPER protocol library if you’d like or just copy & paste these interfaces to your challenge. I even have a VIPER module generator written fully in Swift that may generate a module primarily based on this template (or you may make your individual).


Easy methods to construct VIPER interfaces?

Let me clarify a pattern circulate actual fast, take into account the next instance:


protocol TodoRouterPresenterInterface: RouterPresenterInterface {
    func dismiss()
}



protocol TodoPresenterRouterInterface: PresenterRouterInterface {

}

protocol TodoPresenterInteractorInterface: PresenterInteractorInterface {
    func didLoadWelcomeText(_ textual content: String)
}

protocol TodoPresenterViewInterface: PresenterViewInterface {
    func prepared()
    func shut()
}



protocol TodoInteractorPresenterInterface: InteractorPresenterInterface {
    func startLoadingWelcomeText()
}



protocol TodoViewPresenterInterface: ViewPresenterInterface {
    func setLoadingIndicator(seen: Bool)
    func setWelcomeText(_ textual content: String)
}


The view calls prepared() on the presenter in some unspecified time in the future in time viewDidLoad(), so the presenter can kick off. First it tells the view to indicate the loading indicator by calling setLoadingIndicator(seen: true), subsequent asks the interactor to load the welcome textual content asynchronously startLoadingWelcomeText(). After the information arrives again to the interactor it might probably notify the presenter through the use of the didLoadWelcomeText("") methodology. The presenter can now inform the view to cover the loading indicator utilizing the identical methodology setLoadingIndicator(seen: false) this time with a false parameter and to show the welcome textual content through the use of setWelcomeText("").

One other use case is that somebody faucets a button on the view with a purpose to shut the controller. The view calls shut() on the presenter, and the presenter can merely name dismiss() on the router. The presenter also can do another stuff (like cleansing up some sources) earlier than it asks the router to dismiss the view controller.

I hope that you just get the instance, really feel payment to implement every little thing by your individual, it is fairly a pleasant process to follow. After all you’ll be able to make the most of blocks, guarantees or the model new Mix framework to make your stay easier. You’ll be able to for instance auto-notify the presenter if some async information loading have completed. 😉

So now that you’ve a fundamental understanding a few fashionable VIPER structure lets discuss find out how to exchange the standard ViewController subclass with SwiftUI.



Easy methods to design a VIPER primarily based SwiftUI utility?

SwiftUI is kind of a novel beast. View are structs so our generic VIPER protocol wants some alterations with a purpose to make every little thing work.

The very first thing you must do is to eliminate the ViewPresenterInterface protocol. Subsequent you’ll be able to take away the view property from the PresenterInterface since we will use an observable view-model sample to auto-update the view with information. The final modification is that you must take away the view parameter from the default implementation of the assemble perform contained in the ModuleInterface extension.

So I discussed a view-model, let’s make one. For the sake of simplicity I’ll use an error Bool to point if one thing went flawed, however you would use one other view, or a standalone VIPER module that presents an alert message.


import Mix
import SwiftUI

closing class TodoViewModel: ObservableObject {

    let objectWillChange = ObservableObjectPublisher()

    @Revealed var error: Bool = false {
        willSet {
            self.objectWillChange.ship()
        }
    }

    @Revealed var todos: [TodoEntity] = [] {
       willSet {
            self.objectWillChange.ship()
        }
    }
}


This class conforms to the ObservableObject which makes SwiftUI potential to test for updates & re-render the view hierarchy if one thing modified. You simply want a property with the ObservableObjectPublisher sort and actually ship() a message if one thing will change this set off the auto-update in your views. 🔥

The TodoEntity is only a fundamental struct that conforms to a bunch of protocols like the brand new Identifiable from SwiftUI, as a result of we would prefer to show entities in an inventory.


import Basis
import SwiftUI

struct TodoEntity: EntityInterface, Codable, Identifiable {
    let id: Int
    let title: String
    let accomplished: Bool
}


A fundamental SwiftUI view will nonetheless implement the ViewInterface and it will have a reference to the presenter. Our view-model property can also be going for use right here marked with an @ObservedObject property wrapper. That is the way it seems like in code to date:


import SwiftUI

struct TodoView: ViewInterface, View {

    var presenter: TodoPresenterViewInterface!

    @ObservedObject var viewModel: TodoViewModel

    var physique: some View {
        Textual content("SwiftUI ❤️ VIPER")
    }
}


The presenter can even have a weak var viewModel: TodoViewModel! reference to have the ability to replace the the view-model. Looks as if we now have a two-way communication circulate between the view and the presenter through the use of a view-model. Seems to be good to me. 👍

We will additionally make the most of the model new @EnvironmentObject if we need to go round some information within the view hierarchy. You simply should implement the identical remark protocol in your surroundings object that we did for the view-model. For instance:


import Basis
import Mix

closing class TodoEnvironment: ObservableObject {

    let objectWillChange = ObservableObjectPublisher()

    @Revealed var title: String = "Todo checklist" {
       willSet {
            self.objectWillChange.ship()
        }
    }
}


Lastly let me present you find out how to implement the module builder, as a result of that is fairly difficult. It’s a must to use the brand new generic UIHostingController, which is fortunately an UIViewController subclass so you’ll be able to return it after you end module constructing.


closing class TodoModule: ModuleInterface {
    typealias View = TodoView
    typealias Presenter = TodoPresenter
    typealias Router = TodoRouter
    typealias Interactor = TodoInteractor

    func construct() -> UIViewController {
        let presenter = Presenter()
        let interactor = Interactor()
        let router = Router()

        let viewModel = TodoViewModel()
        let view = View(presenter: presenter, viewModel: viewModel)
            .environmentObject(TodoEnvironment())
        presenter.viewModel = viewModel

        self.assemble(presenter: presenter, router: router, interactor: interactor)

        let viewController = UIHostingController(rootView: view)
        router.viewController = viewController
        return viewController
    }
}


Placing collectively the items from now could be only a piece of cake. If you would like, you’ll be able to problem your self to construct one thing with out downloading the closing challenge. 🍰

Effectively, when you’re not into challenges that is positive too, be happy to seize the instance code from The.Swift.Dev tutorials on GitHub. It accommodates a pleasant interactor with some cool networking stuff utilizing URLSession and the Mix framework. The ultimate SwiftUI code is only a tough implementation, as a result of as I informed you at first there actually good tutorials about SwiftUI with examples.

I hope you loved this tutorial, please subscribe & inform me what you suppose. 🤔





[ad_2]

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments