SwiftUI search bar example using UIViewRepresentable Hindi tutorial

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

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

  • @CodeCat15
    @CodeCat15  4 года назад +1

    This tutorial will provide in depth understanding of the UIViewRepresentable protocol which will help you to build a bridge between UIKit and SwiftUI. Do feel free to ask questions via comments or email I will be happy to answer them. You may download the code from GitHub or Google Drive the link for the same is provided in the video description.

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

    Hi Codecat15, huge fan of your channel. I love the way you teach concepts in very simple and elaborative way. After 9 years working on Objective-C and Swift, now I got the challenge to learn SwiftUI and thankfully your videos hit me. Blessed! Apart from this, thanks for adding that really motivating quote in the beginning of this video. It boosts me up to learn SwiftUI. Best wishes.

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

      there will be more videos coming for SwiftUI, working on something hope to release it soon.

  • @manojmalvi7918
    @manojmalvi7918 3 года назад

    You are doing very great sir!! Keep doing such great things - Thanks to you!!!

  • @kapilgoyal7808
    @kapilgoyal7808 10 месяцев назад +1

    Clear explanations step by step for communication between SwiftUI and UIKit. Thanks making this video. one question about beyond this topic, do you think that Apple will launch Hybrid framework like Flutter, React. becuase it is woking on SwiftUI and Swiftdata more.

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

      I don't really think that will ever happen because apple is closed ecosystem and their tech stack is more close to the mac environment than other systems but who knows maybe apple can surprise us by actually doing something hybrid in the future, only time will tell

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

    HI Codecat15, this video helps lot for understanding the UIKit and SwiftUI communication.

  • @rajeshkumarsahil1669
    @rajeshkumarsahil1669 4 года назад +1

    Great Tutorial... Looking for tutorial of Paths in SwiftUI.

    • @CodeCat15
      @CodeCat15  4 года назад

      There are few tutorials which are in current recordings and then after that it's all going to be SwiftUI

  • @goretushar37
    @goretushar37 4 года назад +1

    Hey CodeCat, Thanks a lot for this video it's very useful and most importantly you cover many things which helps to understand how it works and why to use. N main thing you almost cover all interview questions which may ask on swiftui.😅

    • @CodeCat15
      @CodeCat15  4 года назад

      Thank you for your comment Tushar, it’s very important to understand why you are doing things why you are coding in a specific way than just learning or coding something for namesake more amazing contents are on the way for swiftui and swift programming so stay tuned and do share the channel with your iOS group

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

    Please make video on diffrerence between @stateobject and @observedobject

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

      noted will do, was on a break for a while will work on it and release the video asap. Thank you for your patience

  • @saqibrehman8692
    @saqibrehman8692 4 года назад +1

    great tutorial . Nice work ... is there any way to write a custom function and then call that function into struct view button ?

    • @CodeCat15
      @CodeCat15  4 года назад

      Yes you can, in the coming combine tutorials am going to explain this in details and its actually very easy. Let me know if you have any questions on this will be happy to answer them for you Saqib and do share this with your iOS group

    • @saqibrehman8692
      @saqibrehman8692 4 года назад

      @@CodeCat15 thanks for support . i will appreciate if you upload it earlier . because i am stuck badly on it .Sorry .i mistyped my question . how hilarious i am . Questuion : can we write a custom function in coordinate of uiviewrepresentable and then calling it in a struct view and updating the main view of ui view representable .? Thanks in Advance . looking forword for each and every video of yours .

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

    In UIKit controls used to be type Class but in SwiftUI why all views are struct? And what is @frozen wrapper infront of them?

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

      I think this design decision was made by apple to fit the need to reflect the instant changes on the view, structs are value types and hence when an existing value is updated in the struct it creates a new copy this provides predictable behavior, making it easier to reason about the state and identity of views and since structs are copied by value, the framework can easily determine when a view has changed and needs to be re-rendered.
      In Swift, the `@frozen` attribute is used to indicate that a public enumeration or struct's cases or properties will not change in future versions of the library or module

  • @jorgesegundo4184
    @jorgesegundo4184 4 года назад +1

    Nice tutorial, but... dude, indent your code !

    • @CodeCat15
      @CodeCat15  4 года назад +1

      Yes I agree with you, I need to indent it right.

    • @jorgesegundo4184
      @jorgesegundo4184 4 года назад +1

      @@CodeCat15 yep, but dude, don't get me wrong, really appreciate the tutorial !

    • @CodeCat15
      @CodeCat15  4 года назад +1

      No i totally agree with you and i have taken it positively as such comments help me to improve myself so thank you Jorge for letting me know where i can improve 👍 appreciate the input and keep them coming as u see more of such areas