Storing user settings with UserDefaults - iExpense SwiftUI Tutorial 5/11

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

ความคิดเห็น • 9

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

    Okay, that was much easier than I thought. The internet is full of tutorials about SwiftData, but this is the first vid I watched about storing simple values like config strings, integers, OAuth-keys and stuff like that. Extremely useful actually.Thank you!

  • @ags2099
    @ags2099 7 หลายเดือนก่อน +2

    bro this sheeesh crazy it worked like a buttercup with chicken holybadoly nice ty

    • @PippyPappyPatterson
      @PippyPappyPatterson 4 หลายเดือนก่อน +1

      skibidi diddly my chochancho gobancho

  • @AlanRick26
    @AlanRick26 7 หลายเดือนก่อน +1

    Brilliant video. I wish I’d discovered this before wasting time battling with the much hyped SwiftData. I wish the WWDDC SwiftData vid had mentioned this capability, which is clearly a better option for singular data.
    🐴Horses for courses.

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

    Thanks Paul, this is a very useful video! I'm wondering I have only a few pieces of user data I'd like to save to the users device, how do I decide between using User Defaults and AppStorage?

    • @camerastooge
      @camerastooge 11 หลายเดือนก่อน +2

      Judging by what Paul said in the video, using @AppStorage is suited for individual pieces of data like variables and constants. If you had to store anything more complex (like a struct or a class, or a collection thereof), you're probably best service using UserDefaults.

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

    Can I use @AppStorage twice in my app in different places with the same key?

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

      Yes, of course.