How to use Dependency Injection in SwiftUI | Advanced Learning #16

Поделиться
HTML-код
  • Опубликовано: 21 окт 2021
  • In the last video, we learned how to use Protocols. In this video, we will now take what we learned and implement Dependency Injection into our project using Protocols. By the end of this video you will now only understand what DI is, but also know how to do it.
    Once you begin using Dependency Injection in your apps, there is no going back! It becomes extremely important when creating scalable and testable apps.
    We will also talk about the downfalls of Singleton's and how Dependency Injection can solve them!
    🤙 WELCOME BACK 🤙
    WEBSITE: www.swiftful-thinking.com
    DISCORD: / discord
    GITHUB: github.com/SwiftfulThinking/
    SAY THANKS: www.buymeacoffee.com/nicksarno

Комментарии • 84

  • @TechnoBog-ov2mp
    @TechnoBog-ov2mp 2 года назад +18

    I found this channel as the best for iOS developers

  • @pranavbellamprasad6314
    @pranavbellamprasad6314 Месяц назад

    The best video out there to understand about Dependency Injection. Thanks!

  • @bbongrip
    @bbongrip 2 года назад +6

    So awesome! I really appreciate the way you explain things. Been looking for a while for videos that go in depth and really explain things instead of just showing one example. Keep up the good work!

  • @candylover2456
    @candylover2456 2 года назад +10

    Amazing! You never fail to teach a hard concept and make it easy. Thank you so much, you make a huge impact with your work :)

  • @allisondelta1
    @allisondelta1 2 года назад +2

    Blown Away ! Your tutorials are so rich with information. I have adapted my own logic based on your practices. Very succinct ! TY !

  • @spradohak
    @spradohak 7 месяцев назад +1

    Brilliant, I had to watch it multiple times but now it make more sense.
    Thank you Nick

  • @priceringo1756
    @priceringo1756 2 года назад +3

    Great post! About two thirds through the video I am on the edge of my seat thinking what about testing? Please don't wait to talk about that. You came through in the clutch. I realize you are going to expand on that in the future. Don't change a thing.

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +5

      Unit Testing video is scheduled for this Monday and UI Testing is after that 🥳

  • @TheMadG007
    @TheMadG007 2 года назад +3

    Thank you very much, the entire last week I tried to learn how to replace my singleton Storageprovider (for Core Data) in an appropriate way with dependency injection for easier testing .... I struggled especially regarding initialization of the ViewModel (as StateObject)... everything I needed to know was in this video! 👍

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +2

      Hah that’s so awesome to hear! Thanks for the comment

  • @jimmyhuang1114
    @jimmyhuang1114 2 года назад +1

    Wonderful tutorial about dependency injection. Thanks you for your efforts and clear demonstrations. :)

  • @BSharing09
    @BSharing09 Год назад +1

    Excellence tutorials, you are the best teacher.

  • @dispatchswift
    @dispatchswift 2 года назад

    Superb explanations.

  • @aybarsacar9375
    @aybarsacar9375 2 года назад +1

    Hi Nick, great content! -- it would be great to see an app from you with Clean Architecture from Uncle Bob using SwiftUI - it would be great to see the ways we can create dependency injection containers to manage them in our apps. Looking forwards to your new content

  • @fsdolphin
    @fsdolphin 2 года назад

    You're simply the best!

  • @user-yd9xy3rb4x
    @user-yd9xy3rb4x 2 года назад +1

    What a minute how to inject a view model to a view, that's why I started watching the whole video. Good stuff BTW.

  • @user-eg7ep8db8j
    @user-eg7ep8db8j 2 года назад

    It's great video!!! amazing~~~
    thank you for sharing this topic!!

  • @happyuser109
    @happyuser109 2 года назад

    Really great video!

  • @josemanuelortizsanchez4983
    @josemanuelortizsanchez4983 11 месяцев назад

    Thanks Nick, good resume!

  • @amirpirzad2750
    @amirpirzad2750 2 года назад

    So awesome 👏🏾🌹

  • @princeabyss4976
    @princeabyss4976 2 года назад

    nice DI video, thankss 😁

  • @arkemal
    @arkemal Год назад

    Man, this is an excellent course. Thank you!
    Do you have other video related to SOLID principales?

  • @mylaluna
    @mylaluna Год назад +1

    Hi man, your videos have been very helpful to me.

  • @samisanoof
    @samisanoof 2 года назад +3

    I found your way of explaining things the best of all. Do you have any plans to make similar videos on Combine Framework?

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +7

      Hey Sami! I did some beginner level Combine videos in the "Continued Learning" playlist and I'll be doing some more advanced ones later in this playlist. I don't have a separate playlist just for Combine though 😅

  • @kerryferguson8267
    @kerryferguson8267 2 года назад

    Unrelated to the topic but I'm also learning great explanation skills and methods by watching your videos. I'm gonna steal it for my interviews lol.

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +2

      Haha that's great to hear. Being able to explain these topics out loud is a huge indicator of competence. I've interviewed many candidates that put topics like this on their resume but can't explain it in the actual interview 😔

  • @aspublic
    @aspublic Год назад

    Very useful video, but it would be great to have another video explaing dependency injection works with Core Data and a navigation of sub-views

  • @Away88123
    @Away88123 9 месяцев назад

    Nice.

  • @jarodpaulson9439
    @jarodpaulson9439 2 года назад

    Great video man.

  • @woozoobro
    @woozoobro Год назад

    You are truly amazing!!!! Now I understand your crypto app code!!!

  • @zawysa
    @zawysa Год назад +2

    In general good work. Though you forget to mention that dependency injection can be very difficult to keep track of in big projects. Keeping track of all the dependencies is like visually having to keep track of a big DAG in your head. Do you know good DI container frameworks?

  • @AdjieSatryo
    @AdjieSatryo Год назад +2

    So easy to understand explanation. But the main reason im using singeleton is to using it from any class (ie. Network Manager, Socket Manager, Coredata manager). So, how can i share dataService class to other class? Thank you

  • @michaelsamoylov
    @michaelsamoylov Год назад

    Thanks for sharing this. I'm a big fan on Uncle Bob and Clean Architecture. It appears to be working well with one view but how would you make it work with several views sharing the same data service?
    For example, adding a record in one view and getting it in another view.
    Using `PassthroughSubject` from Combine and adding a data publisher looks like huge added complexity IMO.

  • @stevexphotography128
    @stevexphotography128 Год назад +1

    Hi Nick! Thank you for your awesome tutorial! I'm wondering that what if I want to create more DataServices for other Models, say UserDataService for Users, CommentDataService for Comments, etc. There might be different parameters for the same func name `getData()` or `addData()` or something else in different DataServices. I've tried to add the same func name with no parameters in DataServiceProtocol but got errors, swift think they are different functions. So how should I arrange my DataServiceProtocol or should I still use protocol? I'm still a beginner and I would really appreciate it if you could offer some suggestions.(Maybe I should move this comment to the protocol tutorial...😂)

  • @TheSpiralnotizblock
    @TheSpiralnotizblock 2 года назад

    What we would do if we have a mock class that conforms to a DataService protocol, but the mock class doesn't need all of these methods of the protocol? For example it needs only 2 of 5

  • @950djb
    @950djb 5 месяцев назад +1

    What if you have a network service that is also an ObservableObject? It maintains properties such as a @Published accessToken and other things like that. What are your thoughts on nested @StateObjects and DI? I've found that injection an ObservableObject into another ObservableObject can get kind of wonky.

  • @mhmtkrnlk
    @mhmtkrnlk 2 года назад

    MVVM architecture is realy feast to eyes. After UIKit

  • @lincolndickerson1293
    @lincolndickerson1293 2 года назад +1

    Great video again! One question and this may take another boot camp to answer, lol. I see core data as a data service. It is common practice to use @Environment to hold the context of the core data entity. It is then easy to swap contexts for previews, testing… Could we and should we put our DataService master class, the one that holds many data services, into the Environment and use it in the same way? Like core data we would inject into the View init fetching criteria.

    • @monstrositylabs
      @monstrositylabs Год назад

      It's a question I would like to know as well. The problem I have found is that the Environment is not accessible from the ViewModel without a whole load of mess.

  • @coldy5845
    @coldy5845 10 дней назад

    I have one question. How could we unwrap the URL without force unwrapping in this case without altering the syntax? let url: URL = URL(string: "...") ?? nil for example? but this seems not to be a soloution because value of type url can't be nil.. Thanks!

  • @mhfs61
    @mhfs61 2 года назад

    👍🏼👍🏼👍🏼

  • @joe0212
    @joe0212 2 года назад

    Should the view not be passed the view model as dependency

  • @kevincosta2132
    @kevincosta2132 6 месяцев назад

    All those videos using singletons just to know that we aren't actually going to use them in production D: great video tho!!

    • @SwiftfulThinking
      @SwiftfulThinking  6 месяцев назад +1

      Most apps you work in will likely have a lot of Singletons. Although they are not preferred, they are very common. DI is preferred but it also requires much more code to support it, which is why I use Singletons in many videos, otherwise we’d spend too much time off-topic dealing with the DI 😅

  • @dugrut1325
    @dugrut1325 Год назад

    I broke thru the 'DataService' barrier; ... how many times can you say 'DataService' before a programmer passes out? hahaha. I watched until the end but still no further ahead. So do I get the point? NO ; I'll watch it again, again an again

  • @ufukk54
    @ufukk54 2 года назад +1

    Hi sir. How do I transfer data between pages with Dependency Injection? Can you make an app with 2 or 3 pages about it?

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +4

      That is a great idea Ufuk. I will try to do a mini series on it 🥳

  • @merlingrim2843
    @merlingrim2843 Год назад

    So even though you inject the dependency, the injected value/class instance is still effectively subject to threading issues.

    • @monstrositylabs
      @monstrositylabs Год назад

      IMO yes. I find this pattern messy personally, but I seem to be the odd one out, so came here so that I'm down with the kids.
      The environmentObject would seem a cleaner way combined with @MainActor to pass data about, but I run up against more mess due to EnvironmentObject not easily accessible from the ViewModel.
      I'm yet to find the 'perfect' pattern of clean, safe code.

  • @bonifacy9511
    @bonifacy9511 Год назад +1

    @Swiftful Thinking, how about passing VM's through .environmentObject? Or can you show how to initialize VM's on the top and pass it to he n child view? eg with this Dependencies class?
    We need a better explanation of that

    • @danielwatson6529
      @danielwatson6529 7 месяцев назад

      what id been doing is creating the object in a parent, initialising the child vm in the view initialiser and passing the object in, simultaneously i passed down the object into the childs view. this way navigation could work and i read from the environment. but to interact with the object i do it through the vm

  • @egorsev
    @egorsev 2 года назад +1

    Could you do video lessons about the Combine?

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +1

      I have some starter Combine videos in the "Continued Learning" playlist and I'll be adding some more advanced ones toward the end of this playlist!

    • @egorsev
      @egorsev 2 года назад +1

      @@SwiftfulThinking Thank you so much for your hard work.

  • @vebbis5961
    @vebbis5961 2 года назад +1

    How would you use dependency injection if you also had another service communicating with the service that communicates directly with the viewModel? Example:
    UserViewModel -> UserService -> StorageService/UserRepsoitory

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад

      Great question! You would inject the UserRepository into the init of the UserService

    • @vebbis5961
      @vebbis5961 2 года назад

      @@SwiftfulThinking Okay thank you. In that case would you be both using .sink in the ViewModel and the UserService? It just seems strange.

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +1

      @@vebbis5961 It all depends how you build your application. In this specific example, I’m not sure if a UserRespository needs to hold @Published variables. More common here, you would have for fetching functions in the UserRepository, which are being called from the UserService. But you probably don’t need to store them in memory (@Published) in both places. Often that’s only in the viewModel or the Service layer

    • @vebbis5961
      @vebbis5961 2 года назад

      @@SwiftfulThinking Awesome. Thank you.

    • @vebbis5961
      @vebbis5961 2 года назад

      @@SwiftfulThinking Have you considered creating a video on how to create a custom Publisher? There isn't a single tutorial on this with an in-depth explanation.

  • @stilljunior1764
    @stilljunior1764 11 месяцев назад

    i followed every line of code to 14:00, but my data isn't shown on the screen, but when I add a custom button to print it, everything works finally, actually, I don't understand why my screen doesn't update the data

    • @kflat420
      @kflat420 10 месяцев назад

      Can you post your code for the button. I'm having trouble getting the data to appear as well

  • @OgabekDev
    @OgabekDev 3 месяца назад +1

    Your teaching skills are incredible. But this using protocols is not part of dependency injection. It is somehow polymorphism. But it is also great. I am your fan. I have another true subscriber.

  • @thahiraf1317
    @thahiraf1317 2 года назад

    I am following your videos, xcode 13 making too much problem. what is the solution?

    • @SwiftfulThinking
      @SwiftfulThinking  2 года назад +1

      My new videos will be in Xcode 13, but it shouldn’t make much of a difference..

    • @thahiraf1317
      @thahiraf1317 2 года назад

      @@SwiftfulThinking sorry,may be I am feeling that because of fresher.

  • @tbg6nb
    @tbg6nb Год назад

    Shouldn't a singleton have a private init ? Otherwise you can create multiple instances

    • @SwiftfulThinking
      @SwiftfulThinking  Год назад

      This video is showing how to avoid using singletons, but yes you can have a private init if you are using one

    • @tbg6nb
      @tbg6nb Год назад

      @@SwiftfulThinking Yeah, it is a very useful video and I really liked it but was just wondering if a class without a private init can be called a Singleton

  • @dugrut1325
    @dugrut1325 Год назад

    I skipped this video, too deep! but I'll try it now... I'll let you know... anyone have a shovel?

  • @dugrut1325
    @dugrut1325 Год назад

    ...stressed you guys out... too late!

    • @SwiftfulThinking
      @SwiftfulThinking  Год назад +1

      What did u think?

    • @dugrut1325
      @dugrut1325 Год назад

      @@SwiftfulThinking after the first 5 minutes I passed out! But I won't give up. I've written a few big apps without this or understanding it. I don't understand init() ; combine; @EnvironmentObject and a few other big things but I work around it. Good thing I'm retired; I'd starve as a programmer. But I'll try to watch this video to the end. You are the best teacher out there, so I keep coming back to your videos.

    • @SwiftfulThinking
      @SwiftfulThinking  Год назад

      @@dugrut1325 😂😂😂😂 you’re cracking me up

    • @dugrut1325
      @dugrut1325 Год назад +1

      @@SwiftfulThinking Back in the early 80s through work I was introduced to BASIC which was a new concept. Which was right after recipe card hole punch computers. During that first class we learnt 5 command words only but I was hooked. I went home and through the night; I wrote a program. [on paper, no home computers then] I showed it to the instructor; he was impressed. After that I signed up at college to take a night course. There was only one main computer, which took up a wing of the school. The students had access to a keyboard entry terminal. It looked like a monster typewriter with paper. I wrote a program for work that created a guide chart. I showed it to the big bosses, they implemented across the country and it was used for twenty years. This started my IT career path. Until I became a permanent programmer and created major applications that were used in our federal agency through the whole country. VB VBA SQL and Digital CL. Most of this was self taught but I did classes in Montreal, Winnipeg, NY, etc ... I travelled the country all the time. It was a great job but I was happy to retire. Now I'm trying to learn SwiftUI. It is challenging. But I did write my LocationWeatherJournal which I use everyday. Also TravelTracker which works amazingly well, and a few others. Ok enough rambling...

  • @xpopcornx1747
    @xpopcornx1747 2 года назад

    He skipped the most important part which is where and how to create the dependencies...

    • @dispatchswift
      @dispatchswift 2 года назад

      He did explain where and how to create dependencies. Could you elaborate?