SmartPublished
@propertyWrapper
public struct SmartPublished<Value> : Codable where Value : Decodable, Value : Encodable
extension SmartPublished: SmartPublishedProtocol
这段代码实现了一个自定义的属性包装器 SmartPublished, 将Combine 的发布功能与 Codable 的数据序列化能力结合。通过属性包装器简化属性的声明,同时支持相应式编程。 用于结合 Combine 的功能和编码解码支持。以下是对整个代码的说明。 projectedValue提供一个发布者,可供订阅。
-
Declaration
Swift
public init(from decoder: Decoder) throws
-
Declaration
Swift
public func encode(to encoder: Encoder) throws
-
Undocumented
Declaration
Swift
public var wrappedValue: Value { get set }
-
Undocumented
Declaration
Swift
public var projectedValue: Publisher { get }
-
Undocumented
See moreDeclaration
Swift
public struct Publisher : Combine.Publisher
-
Undocumented
Declaration
Swift
public init(wrappedValue: Value)
-
这个下标实现了对属性包装器的自定义访问逻辑,用于在包装器内自定义 wrappedValue 的访问和修改行为。 参数解析: observed:观察者,即外部的 ObservableObject 实例。 wrappedKeyPath:指向被包装值的引用键路径。 storageKeyPath:指向属性包装器自身的引用键路径。
Declaration
Swift
public static subscript<OuterSelf: ObservableObject>( _enclosingInstance observed: OuterSelf, wrapped wrappedKeyPath: ReferenceWritableKeyPath<OuterSelf, Value>, storage storageKeyPath: ReferenceWritableKeyPath<OuterSelf, Self> ) -> Value
-
Undocumented
Declaration
Swift
public static func createInstance(with value: Any) -> SmartPublished?