Realm with SwiftUI - Create, Read, Update, Delete and Relationships

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

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

  • @andyinthecity
    @andyinthecity 11 месяцев назад +1

    Azam, this video is excellent. I've gone through it at least twice and I have learned so much. I'm also taking your course on Udemy and find that to be an exceptional value as well. You are a great teacher, keep it up! Thanks.

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

    Thank you very much! I have achevied a lot through your wonderful course. It was a very long and painstaiking journey when I had been practicing meanwhile watching this video.

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

    Somehow the onDelete() modifier doesn't work properly it only deletes the last element in the List but not the currently selected and idea why that is?

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

    Absolute Gold My Friend...

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

    Thanks you saved a lot of time in searching good information 🎉❤

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

    Can you please make a video covering how to upload files (from file picker) to an api using URL session or even Alamo fire in SwiftUI?

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

    best realm and SwiftUI tutorial so far! excellent work! btw with the realm SwiftUI property wrappers " try realm" is not really needed except for updates or upserts, is that correct?

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

    Great teacher

  • @IhorFedii-n1i
    @IhorFedii-n1i 2 года назад

    Thanks! It's realy good tutorial!

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

    So helpful!

  • @anudeepananth
    @anudeepananth 9 месяцев назад

    Does this tutorial cover pagination

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

    I have no such default.realm file when I open the link that is printed, do u have any clue why so ?

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

    What would be the best way to mock up the data to get a nice preview (canvas)?

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

    I'm currently working on an app that saves data in struct format, inside an array. Do you think that will still work with the way you've shown realm? Currently I can index into the an element of the array, which is a struct with properties and an array of Dates, Amounts etc. and access the elements in these arrays.

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

      It looks like this as a structure currently, I was hoping not to have to re-write the structure too much.
      @Published var exercises: [Exercise] = [
      Exercise(id: 0, name: "Major Scale", bpms: [], dates: [], image: "testImage"),
      Exercise(id: 1, name: "Natural Minor Scale", bpms: [], dates: [], image: "testImage"),
      ... so on ]