Swift Networking Masterclass | A Comprehensive Course for iOS Developers

Поделиться
HTML-код
  • Опубликовано: 2 фев 2025

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

  • @ioszm6787
    @ioszm6787 Год назад +26

    ur twitter tutorial helped me get an iOS job contracting at a huge airline. Contract ended unfortunately but now im watching this preparing for a Meta interview. Really appreciate your efforts bro

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

      Good luck man

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

      Why did the contract end ?

    • @305Zak
      @305Zak Год назад

      @@kwiky5643the project was completed

    • @Jamerson_macedo
      @Jamerson_macedo 23 дня назад

      I also got a job through the twitter clone

  • @anashassnn
    @anashassnn Год назад +8

    Running away with being the best ios channel atm, thanks for the great content

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

      I appreciate that!

  • @rank1macro
    @rank1macro Год назад +21

    As usual you are on another level, always doing stuff no else does. Thank you for all this knowledge 🙏🏼🦅

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

      You really make all of this seem so easy

    • @appstuff
      @appstuff  Год назад +8

      My pleasure!

  • @alextoma402
    @alextoma402 Год назад +19

    wow! A developer who actually knows what he's talking about !!!

  • @PureMoonshne
    @PureMoonshne 4 месяца назад +1

    This guy can break things down like a G!!! and brings good illustration as well as examples!!! 🔥🔥🔥🔥🔥🔥

  • @ghumtoboom1254
    @ghumtoboom1254 Год назад +8

    It helps a lot as an iOS dev. Thank you so much!

  • @muhammadusman-vc5re
    @muhammadusman-vc5re Год назад +4

    May GOD bless on you for this comprehensive effort.

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

    Perfectly explained, especially the threading section.

  • @alcprado
    @alcprado Год назад +5

    Thanks friend for this awesome work and masterclass

  • @azamsharp
    @azamsharp Год назад +5

    One suggestion I can give is to increase the font size. It is quite hard to read the code.

    • @appstuff
      @appstuff  Год назад +5

      Azam! You actually just gave a talk at Capital One where I work! Was cool to see.
      I will take that into consideration. It is on presentation large tho 😂

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

      @@appstuffit’s on large but the resolution is still high so it is a little hard to read.

  • @benjaminlee9380
    @benjaminlee9380 Год назад +15

    Its not really a networking masterclass when you only show get requests. Definitely lacks content and would make me second guess buying an actual course......

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

    Great video Stephan. Thank you from the other side of the world 🇬🇷🇬🇷🇬🇷

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

    great video I come to struggle to find a great example of how to get data from IPA and this video is really helpful

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

    Can anyone tell me if this is the complete tutorial? or it's half for to complete you have to pay?

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

    You're a good teacher bro, like wow

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

    I gotta set aside a day of work to watch this.

  • @aybarsacar9375
    @aybarsacar9375 Год назад +4

    Great video mate! Could you please also cover web sockets over tcp and udp clients for iOS?

  • @kelseyzhou4564
    @kelseyzhou4564 4 месяца назад

    Thanks for sharing this video! Awesome content. But one question, what if we need to set the request header? Can we use the same way? Or we have the use taskFromRequest

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

    BRILLIANT!!!!!!!!!!!! PERFECT !

  • @VictorKc-u1p
    @VictorKc-u1p Год назад

    Thanks for the video. One little thing, instead of "if let error = error {" you can have "if let error {", same for the guard statement

  • @timothycbryant
    @timothycbryant 9 месяцев назад +2

    It looks like they require an API key now. I was planning to buy the full course, but want to make sure it is updated with this requirement before I spend the money. Is that something we will find in the full course?

    • @yifanisme
      @yifanisme 8 месяцев назад

      some problem ya

  • @АлексейБалухтин-ж4п

    Hello, it would be great if you could help me understand the topic of multi-module application! Thank you.

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

    I used Sean Allens API Calling Technique in his beginner video. It worked. But I guess it’s good to do both ways 😅

  • @migalejo85
    @migalejo85 4 месяца назад

    how is it that the course is on youtube for free??

  • @vitorporto6099
    @vitorporto6099 8 месяцев назад

    Nice video bro. Thanks for the help!

  • @bhushan-mahajan
    @bhushan-mahajan Год назад +1

    Thanks bro this helps a lot

  • @p.ternali
    @p.ternali Год назад

    Hello! In your SwiftUI Chat Pro course, will you continue the push notifications section?

  • @PernellJones-o5p
    @PernellJones-o5p Год назад

    What if the api requires a oauth2?

  • @Muhammadhassan-yb4pi
    @Muhammadhassan-yb4pi 5 месяцев назад

    thanks bro can you please share the github link

  • @DavidBrunk-l9i
    @DavidBrunk-l9i 8 месяцев назад

    For the CoinDataService, I notice you initialize it in the viewmodel, but if we wanted to use dependency injection and inject a service into the view model, how would you handle this within the context of an entire application? What would be the best place to initialize your service? Would it be at the creation of the view model, or could you have one instance of your service and just pass it around to view models that need it?

    • @appstuff
      @appstuff  8 месяцев назад +1

      I would initialize the service at the root app level and inject it into an ObservableObject and set it as an environment object

    • @DavidBrunk-l9i
      @DavidBrunk-l9i 8 месяцев назад

      @@appstuff Thanks for the reply! Very helpful

  • @Mehedihasanmayan-dev
    @Mehedihasanmayan-dev Год назад +1

    brother we like your teaching process so could you pls make a video about swift programming language for beginners to advance

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

    Thanks for this effort! I learned a lot

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

    Thank you!
    But how to wrapping custom error type in asyncawait

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

      That’s covered in the pro version! Link in description of video

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

    Thanks for this Really, Hats of to you Sir.

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

    thank you so much!

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

    what state management is used in iOS dev I come from background of Flutter where we use sate management like Provider, River Pod, Bolc etc. And I want to start learning iOS dev but I don't have a mac so can I use Hackintosh?

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

      SwiftUI has a property wrappers you can use to create state properties and manage state in your app. I’m not sure if you can use Hackintosh, I would just get a MacBook

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

      @@appstuff does it have any external libraries like Flutter and if yes? From job POV having knowledge about external state management library is necessary?

  • @Spacer-l3j
    @Spacer-l3j Год назад +2

    good stuff bro

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

    Amazing explanation

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

    Thank you!!!

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

    Awesome video mate 🎉😊

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

    Great Course thnx

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

    thank you for this diamond

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

      it would be awesome if you can do for post, put and delete request too

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

    This is gold.

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

    hey, i love your video, i want to ask you something since there's alot of debate that mvvm is redundant for swiftui, what do you think? why you still use view model for this video?

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

      Architecture and modularity

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

    Nice video !

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

    Hi, I've read "FREE Threads Clone SwiftUI Course:" but its not free, right?

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

      There’s a free version on the RUclips channel, and a pro version on my site that has more features

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

    This is free?! Holy moly!!! XD

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

    Thank you so much
    May God reward all your kindness and always be in God's protection

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

    DEBUG: you are very very good, thank you very much

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

    Good lecture. If you could make your video text a little bigger or larger presentation fonts will make your lesson perfect.

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

    Oh yeah, I remember why all my apps so far have all not had to do network requests

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

    cool video)

  • @milanlabus1582
    @milanlabus1582 5 месяцев назад

    Time of this video was a great time to buy bitcoin

  • @AleksandrLevtsenko-c8t
    @AleksandrLevtsenko-c8t 4 месяца назад

    Top

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

    don't stop pls

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

    'Promo sm'

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

    So much fluff and more of an in depth fundamentals vs masterclass.

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

      There is zero fluff in here

  • @sushiConPorotos
    @sushiConPorotos 14 дней назад

    "It's really difficult to find out this kind of information out there..." There are things called "books", that no one uses any more, unfortunatelly. I mean, younger people do not have the habit of reading books.

    • @appstuff
      @appstuff  14 дней назад

      Personally, like many others, I prefer to learn thru video tutorials. Not really sure what you’re trying to say here, but hope you enjoyed the content