ViewStorage

@frozen
@propertyWrapper
public struct ViewStorage<Value> : Identifiable, DynamicProperty, @unchecked Sendable
extension ViewStorage: Equatable where Value: Equatable
extension ViewStorage: Hashable where Value: Hashable

和State类似,只是不触发UI自动刷新

SwiftUIX

  • Undocumented

    See more

    Declaration

    Swift

    public final class ValueBox : ViewStorageValue<Value>, @unchecked Sendable
  • id

    Declaration

    Swift

    public var id: ObjectIdentifier { get }
  • Undocumented

    Declaration

    Swift

    public var wrappedValue: Value { get nonmutating set }
  • Undocumented

    Declaration

    Swift

    public var projectedValue: ViewStorage<Value> { get }
  • Undocumented

    Declaration

    Swift

    public var valueBox: ValueBox { get }
  • Undocumented

    Declaration

    Swift

    public init(wrappedValue value: @autoclosure @escaping () -> Value)

Public

  • Undocumented

    Declaration

    Swift

    public var binding: Binding<Value> { get }
  • Undocumented

    Declaration

    Swift

    public var publisher: Published<Value>.Publisher { get }

Available where Value: Equatable

  • Declaration

    Swift

    public static func == (lhs: `Self`, rhs: `Self`) -> Bool

Available where Value: Hashable

  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)