Re: [swift-users] Applying MVC pattern to iOS Swift apps

2017-06-23 Thread Andreas Mayer via swift-users
> Am 23.06.2017 um 11:41 schrieb Roy Henderson via swift-users > : > Should controller functions be incorporated in the AppDelegate or is it > better to keep the AppDelegate minimal and put them in a separate controller > module? You start breaking up any controller if

Re: [swift-users] Applying MVC pattern to iOS Swift apps

2017-06-23 Thread Adrian Zubarev via swift-users
Well you are right this is not the right place for such questions, because this mailing list is about pure Swift topics. Think about MVC as MVVM where M = M, V = V and C = VM. Don't get confused by the `Controller` suffix, especially there is no `ViewController` suffix, because it

[swift-users] Applying MVC pattern to iOS Swift apps

2017-06-23 Thread Roy Henderson via swift-users
Firstly, my apologies for submitting a question which is perhaps not strictly on-topic but hopefully the list will permit me a little latitude. Thinking specifically of iOS Swift application design architecture I would be very interested to hear how other members map traditional MVC patterns to