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

Поділитися
Вставка
  • Опубліковано 4 січ 2025

КОМЕНТАРІ •

  • @andyinthecity
    @andyinthecity Рік тому +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?

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

  • @escoffierdesign179
    @escoffierdesign179 2 роки тому

    Absolute Gold My Friend...

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

  • @anudeepananth
    @anudeepananth 11 місяців тому

    Does this tutorial cover pagination

  • @asdrubalchirinos
    @asdrubalchirinos 2 роки тому

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

  • @pitasplaybook
    @pitasplaybook 2 роки тому

    So helpful!

  • @Boghost1430
    @Boghost1430 Рік тому

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

  • @johnpill1
    @johnpill1 2 роки тому

    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 2 роки тому

      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 ]