MVVM is BAD for SwiftUI - Use MVC Instead! (Yes, MVC)

  Рет қаралды 4,061

Rebeloper - Rebel Developer

Rebeloper - Rebel Developer

Күн бұрын

MVVM is BAD for SwiftUI - Use MVC Instead! (Yes, MVC)
Mentoring 👉 rebeloper.com/mentoring
In this video, I'm going to convince you that using MVVM is a bad idea for SwiftUI - and that you should instead use MVC!
MVVM is a popular design pattern for building UIs with Swift, but in this video I'll show you why MVC is a better solution for SwiftUI. I'll cover the benefits of using MVC for your SwiftUI applications, as well as some best practices for using MVC in your SwiftUI projects. So if you're looking for a better way to build your SwiftUI applications, then you should watch this video!
00:00 INTRO
00:20 MVC: MODEL - VIEW - CONTROLLER
01:01 WHAT IS MVVM
02:45 MENTORING
03:20 MODEL AND VIEWMODEL IN MVVM
07:09 WHY MVVM IS BAD FOR SWIFTUI
08:29 MVC IN SWIFTUI
12:55 WHERE TO GO FROM HERE
→ PLAYLIST:
SwiftUI Best Practices 👉 • MVVM is BAD for SwiftU...
DO YOU WANT TO ME TO WORK ON YOUR PROJECT?
HIRE ME → rebeloper.com/hire-us/
TOOLS I RECOMMEND:
→ rebeloper.com/tools
__________
Get in touch:
→ support@rebeloper.com
SUBSCRIBE to weekly tips & tutorials for building iOS apps!
→ kzfaq.info?su...
GitHub: github.com/rebeloper/
Hire me: rebeloper.com/hire-us/
LinkedIn: / rebeloper
My Blog: rebeloper.com/blog
Follow me on Instagram: / rebeloper
Twitter: / rebeloper
______
#rebeloper

Пікірлер: 29
@rebeloper
@rebeloper 10 ай бұрын
Stop using Spacer in SwiftUI (and what to use instead) 👉 kzfaq.info/get/bejne/iZySqMl_z6_YlYU.html&ab_channel=Rebeloper-RebelDeveloper
@imamad
@imamad 10 ай бұрын
Thanks for the video. However, you only renamed VM to Controller and moved it in root view. The only point of this video was only a renaming!
@rebeloper
@rebeloper 9 ай бұрын
Not really. I also touch on some important points about view models. Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@smithshaw1151
@smithshaw1151 3 ай бұрын
@@rebeloper Don't get it. What has night mode got to do with MVVM vs MV+C
@casadogaspar
@casadogaspar 10 ай бұрын
Correct me if I'm wrong, but it's an easier way to Composition Root? I do it in UIKit creating factories in the AppDelegate, it's the same effect?
@rebeloper
@rebeloper 9 ай бұрын
Sorry, I don't really understand your question. Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@sajjadsarkoobi
@sajjadsarkoobi 10 ай бұрын
Thanks for your videos. There is a big But here. If you define a Controller (ViewModel) as an Environment object, it will always exist in memory. while when you are creating views and mentioning a ViewModel as @StateObject (you add @State, which is wrong for defining a ViewModel or controllers), it will be deinitialized when the view is destroyed. So for enterprise projects, it is a very bad way to create Controllers(ViewModels) as an environment object.
@Andrew-7324
@Andrew-7324 9 ай бұрын
Apple deprecated @StateObject
@sajjadsarkoobi
@sajjadsarkoobi 9 ай бұрын
@@Andrew-7324 Take a look at apple documentation for @StateObject, and also used cases and samples. It is not deprecated.
@rebeloper
@rebeloper 9 ай бұрын
I am using Xcode 15 therefore @StateObject is now @State I recommend using a controller only when you want to share resources between views. It's the cleanest way of doing it. If the data is tied to a view I suggest ( not using a view model) using @State on the view only. Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@sajjadsarkoobi
@sajjadsarkoobi 9 ай бұрын
@@rebeloper Apple documentation: If you need to store a reference type, like an instance of a class, use a StateObject instead.
@iLoveAppl3947
@iLoveAppl3947 Ай бұрын
@@sajjadsarkoobi @StateObject has been replaced by @State now
@MaccabeeCaptain
@MaccabeeCaptain 10 ай бұрын
so if UserController was renamed UserViewModel how is that any different than MVVM?
@yourbestsail
@yourbestsail 10 ай бұрын
I think the only difference is not making it fileprivate strictly bounded to the view, but available everywhere. I do not see any other difference apart from the use of the Environment. Nevertheless I think that in more complex cases is necessary that a View has its specific ViewModel.
@MaccabeeCaptain
@MaccabeeCaptain 10 ай бұрын
@@yourbestsail just find it a bit amusing considering the clickbait title I guess..
@yourbestsail
@yourbestsail 10 ай бұрын
@@MaccabeeCaptainActually I did not understand either what’s the real big deal with this. It looks to me that this is not even a general architectural pattern like MVVM. But it may just be because I am not such a super expert…
@rebeloper
@rebeloper 9 ай бұрын
View models should be used on views only. If you need to share data between views use a Controller. Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@rebeloper
@rebeloper 9 ай бұрын
Yes, in complex cases.
@Soleusgaming
@Soleusgaming 10 ай бұрын
I think people are already using mvc like when passing data through screens we initialise in the main file and pass it as environment .
@rebeloper
@rebeloper 9 ай бұрын
Agreed. Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@jcpazos65
@jcpazos65 10 ай бұрын
Hi, like you explanation, sure you are going to receive a lot of comments regarding the importance of MVVM because for large projects, and stuff like that. At the end I really support your comments regarding that no problem in put Business logic in the View, because at the end the MMVM file it has to be related to the view so not difference. You approach to use MVC is great.
@rebeloper
@rebeloper 9 ай бұрын
Couldn't have said it better myself. The cleaner the architecture, the better. MVVM adds too much cluttter. Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@natgenesis5038
@natgenesis5038 5 ай бұрын
I totally disagree
@rebeloper
@rebeloper 5 ай бұрын
Why is that? Can you explain?
@rodionov_av
@rodionov_av 9 ай бұрын
It's MV architecture. NOT MVC!
@rebeloper
@rebeloper 9 ай бұрын
While some views can get away without the controller, there will be at leas one controller in your app, therefor MVC it is :) Next watch Mastering SwiftUI's Night Mode: Unlock Next-Level App Design 👇 kzfaq.info/get/bejne/h9Nhhslh1LXbln0.html&ab_channel=Rebeloper-RebelDeveloper
@tenminutetokyo2643
@tenminutetokyo2643 5 ай бұрын
MVVM is garbage
@rebeloper
@rebeloper 4 ай бұрын
In most complex cases it is. Next watch SwiftUI Navigation Made Easy: Harnessing the Magic of Enums 👇 kzfaq.info/get/bejne/mtVkqL1zvbaakpc.html&ab_channel=Rebeloper-RebelDeveloper
Why You Should Use The SwiftUI Coordinator Pattern
18:45
Rebeloper - Rebel Developer
Рет қаралды 13 М.
Clean Architecture iOS [MVC vs MVVM]
10:48
Rebeloper - Rebel Developer
Рет қаралды 25 М.
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
100❤️
00:19
MY💝No War🤝
Рет қаралды 8 МЛН
Final muy increíble 😱
00:46
Juan De Dios Pantoja 2
Рет қаралды 52 МЛН
Why I don't do MVVM anymore
10:56
Flo writes Code
Рет қаралды 6 М.
STOP Using MVVM with SwiftUI
18:30
azamsharp
Рет қаралды 16 М.
How to use Model View Controller MVC in iOS (Swift 2020)
16:34
iOS Academy
Рет қаралды 24 М.
Performing Network Operations Using MV State Pattern in SwiftUI
28:59
How to Use MVVM (Model View ViewModel) in Swift & iOS - 2023
16:50
MVVM + Dependency Injection in Swift | Unit Testing | iOS
29:29
НЕ ПОКУПАЙ СМАРТФОН, ПОКА НЕ УЗНАЕШЬ ЭТО! Не ошибись с выбором…
15:23
КРУТОЙ ТЕЛЕФОН
0:16
KINO KAIF
Рет қаралды 4,5 МЛН
Easy Art with AR Drawing App - Step by step for Beginners
0:27
Melli Art School
Рет қаралды 8 МЛН