Async Await Swift || @MainActor || MVVM Architecture || Swift Concurrency

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

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

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

    Very nice tutorials, practical approach helps us to understand the concepts clearly. Nice efforts. I like your tutorials.

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

    Hi @Nilesh I am big fan of you the you are explaining is fabulous thank you so much for making such a great videos.
    ❤❤❤

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

    Hi Nilesh, amazing content explained very elegantly. Keep up the good work.

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

    Very nice explanation. Thanks a lot!💐💐💐

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

    Good explanation 👍🏾👏🏼😊

  • @maulikshah6461
    @maulikshah6461 3 месяца назад

    DO you have dependacy injection video?

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

    Hello App Developer, Amazing content as always but voice in this video is little bit low and difficult to hear.. if possible please increase volume, many thanks :)

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

    Thanks for the video

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

    used your tutorial
    var Index : int = 0
    How do i access local var variable inside . i get this issue inside
    Task{
    let task = await callMyFunction( Index)
    }
    Index += 1
    this error i get kindly help out
    Reference to captured var 'Index' in concurrently-executing code

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

      Thanks for going through the tutorial. If you want to use parameter inside Task, it has to be constant to avoid data race condition. So in your case create two function one which gives you index and mke the variable as let and second function should modify your index, instead of modifying directly here