What's New in SwiftUI State Management

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

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

  • @gregdurfee1915
    @gregdurfee1915 ปีที่แล้ว +1

    This kind of presents a novel use of SwiftData; SwiftData use was offered at WWDC 2023, mostly as simpler alternative to CoreData. What you've shown in this video is an example of abstraction reaching back from ContentView to Room, the child view, to the Light class, which holds the persistent value of isOn. The user action is taken in ContentView, the @Bindable variable is an instance of what used to be the ObservableObject. This design pattern is easy to read. Brilliant!

  • @StewartLynch
    @StewartLynch ปีที่แล้ว +4

    @Binding is still used if you do not want to pass an entire Observed object into your child view and only want to bind a single property from that object, or another @State property from the parent view

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

      Yup! I hope Apple don't remove Binding. I don't particularly like that everything is moving towards reference type like Bindable and Model.

  • @angrypi
    @angrypi ปีที่แล้ว +3

    I am a little confused about the @bindable.
    three questions:
    1. why doesn’t @bindable work with value type? in apple’s documentation, @Observable can use both is reference types and value types.
    2. what’s the relation ship between @bindable and @binding?
    3. when child view uses @bindable, why isn’t the view initialized with the `$` prefix like using with @binding?

  • @smotch7533
    @smotch7533 ปีที่แล้ว +5

    I was hoping this would be a what changed and not a beginner tut, there are so many of those

    • @donathmm3881
      @donathmm3881 ปีที่แล้ว +3

      Yeah... He is talking so slowly and so i had to speed up to 3x

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

    you only need to import `Observable`. The import `SwiftData` also includes `Observable`, but you’re introducing overhead by importing SwiftData when the only functionality you want to use is in Observable.

  • @alfredohdev
    @alfredohdev 12 วันที่ผ่านมา

    To use @Observable, is not necessary to use SwiftData, you can import Observation and @Observable will be available

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

    I didn’t read thru all the comments but just in case this fix is not there…..there is a fix for needing that superfulous struct to support @Bindable. Simply add the stmt “@Bindable var light = light” before the Toggle that was in the Room struct (i.e. put the Toggle back) and then you don’t need the LightView struct

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

    Useful video. Thanks.

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

    Useful information ℹ️ thanks

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

    nice video. Could you please make a tutorial on how to use the Observation framework with CoreData? Thx

  • @indiekiduk
    @indiekiduk ปีที่แล้ว +1

    I think it's important to know that @State's initializer is now using an autoclosure (same as StateObject) which is why it is no longer a memory leak to use classes as @State.
    @frozen @propertyWrapper public struct State : DynamicProperty {
    ...
    @available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
    public init(wrappedValue thunk: @autoclosure @escaping () -> Value) where Value : AnyObject, Value : Observable

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

    When I pass environment to contentView its like use contextApi from react ? I came to react native and to try to learn swiftui

  • @sebnoumea
    @sebnoumea ปีที่แล้ว +3

    When using the new Environment property wrapper, you don't have to go through a new View to use a Binding. You just have to declare a new var using the new Bindable PW like so
    var body: some View {
    @Bindable var light = light
    Toggle(isOn: $light.isOn, label: {})
    .fixedSize()
    }

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

      I created the Gist of what I want to do. I want to access and change the Environment object from without the subview.
      gist.github.com/azamsharp/3df44f211413e58e736b08456ea500f7

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

      Thanks! I got your Gist. Yes adding Bindable works as you pointed out. Thanks! But I am not too happy with the fix as it requires another variable to be created. I think it might be a bug in SwiftUI that it does not allow updating the Environment directly because it allowed to do that before.

    • @sebnoumea
      @sebnoumea ปีที่แล้ว +2

      @@azamsharp you'll need to file a feedback so that a projectedValue is added to @Environment

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

    Good video but chapters would help in future ones.

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

    Is this #Preview new too?

    • @azamsharp
      @azamsharp  ปีที่แล้ว +1

      #Preview is a macro. Yes it is new.

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

      @@azamsharp Thanks :)

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

    Why do they keep changing the SwiftUI state and property wrapper APIs and syntax every single time? It makes no sense.

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

      Because its still not right.

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

      They don't. @Observable is not a syntax change, it's a new feature of the framework.