RealmProperty
public final class RealmProperty<Value> : RLMSwiftValueStorage where Value : RealmPropertyType
extension RealmProperty: Equatable where Value: Equatable
extension RealmProperty: Codable where Value: Codable
RealmProperty
インスタンスは、サポートされている型の多形値を表します。
RealmProperty
インスタンスによって保存される基礎の値を変更するには、インスタンスのvalue
プロパティをミューテーションします。
注意
RealmProperty
は Realm オブジェクトで@objc dynamic
として宣言することはできません。 代わりにlet
を使用してください。
-
基礎となる値を取得/設定するために使用されます。
- 使用法:
class MyObject: Object { let myAnyValue = RealmProperty<AnyRealmValue>() } // Setting myObject.myAnyValue.value = .string("hello") // Getting if case let .string(s) = myObject.myAnyValue.value { print(s) // Prints 'Hello' }
宣言
Swift
public var value: Value { get set }
- 使用法:
-
宣言
Swift
public static func == (lhs: RealmProperty<Value>, rhs: RealmProperty<Value>) -> Bool
-
宣言
Swift
public convenience init(from decoder: Decoder) throws
-
宣言
Swift
public func encode(to encoder: Encoder) throws