Swift: Delegate Pattern & View Actions (2021, Xcode 12, Swift 5) - iOS Development

Поділитися
Вставка
  • Опубліковано 26 гру 2024

КОМЕНТАРІ • 34

  • @souallei
    @souallei 3 роки тому +6

    Oh my goodness, I finally understand delegate, I'm so happy. THANK YOU ❤️ I LOVE YOU CHANNEL DUDE ❤️

  • @namedChannel512
    @namedChannel512 2 роки тому +3

    8:30 for start of discussion on delegates

  • @goldfish8196
    @goldfish8196 2 роки тому +2

    Cannot stress enough on how much I love your videos. You are brilliant!

    • @iOSAcademy
      @iOSAcademy  2 роки тому

      I cant stress how much I appreciate the kind words!!

  • @clint87ua
    @clint87ua 3 роки тому +4

    nice video! we need more patterns examples

  • @Mar444_
    @Mar444_ 2 роки тому

    Pure Gold!! This is how professional iOS development is done! Thanks for posting this👏🏾👏🏾👏🏾👏🏾🔥💰💰 💰

  • @ВиталийГринчик-н9щ

    Thanks! Great video! Very clear for understanding. Delegating is a common approach in apps designing as I realized.

  • @ugommirikwe
    @ugommirikwe 3 роки тому +2

    While it’s useful to learn the Delegate pattern, it’s far easier and more straightforward to implement such delegated functionality in the form of a callable function (a.k.a. Closure) as a property on the UIView subclass, and then passing in a higher-order function via the `init` which is assigned to that property. Less boilerplate code, more intuitive to understand.
    In any case, your video is really instructive. Well done.

  • @수학쌤우리소쌤
    @수학쌤우리소쌤 3 роки тому +1

    Thanks for your kindly teaching^^

  • @andrejunqueira4919
    @andrejunqueira4919 3 роки тому +1

    Awesome explanation ! thanks

  • @heysamnx
    @heysamnx 3 роки тому +1

    Great explanation, thx ☺️ Keep going !
    Would be great to hear about data source in the same way as well 💪🙌

  • @swiftman8902
    @swiftman8902 3 роки тому +2

    Nice❤️

  • @Tenly2009
    @Tenly2009 3 роки тому +3

    Great information - starting at 8:14. For the vast majority of your viewers, I would think that the first 8 minutes of this video is a huge waste of their time and completely unrelated to the topic that made us click on the video.

    • @joshuajean4683
      @joshuajean4683 11 місяців тому

      Agreed

    • @joshuajean4683
      @joshuajean4683 11 місяців тому

      Especially considering using auto layout and storyboard would save most of that time.

  • @ramazanabdullayev1969
    @ramazanabdullayev1969 3 роки тому +2

    As an Junior iOS Developer, I'm learning a lot from your video contents. Awesome explanation again! Keep up the good work! 🙂👍🏾

  • @DW-cg8vy
    @DW-cg8vy 3 роки тому +1

    Excellent video. Needed this!
    I miss your zoom in sometimes :)

    • @iOSAcademy
      @iOSAcademy  3 роки тому

      Thanks!

    • @dodilodi1278
      @dodilodi1278 3 роки тому +3

      for me, it is much more better without zoom. :)
      probably because I sometimes like to see some other parts of code.

  • @casadogaspar
    @casadogaspar 3 роки тому +1

    The way you do your UI using frames looks practical when you know what you are doing, but a found the auto layout way to be easier to understand.
    Like, I see you doing the code but only when you run the project that I got what you are doing. When I saw other videos using constraints and auto layout they are more explicit in the way that you read what will happen.
    Maybe you could do some videos using more a constraints approach