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

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 พ.ย. 2024

ความคิดเห็น • 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.

  • @maulikshah6461
    @maulikshah6461 หลายเดือนก่อน

    DO you have dependacy injection video?

  • @sudhakarreddy8760
    @sudhakarreddy8760 ปีที่แล้ว

    Very nice explanation. Thanks a lot!💐💐💐

  • @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 :)

  • @ranganathchenna4559
    @ranganathchenna4559 2 ปีที่แล้ว

    Good explanation 👍🏾👏🏼😊

  • @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