ios – Swift 2.0中的动态可选属性

前端之家收集整理的这篇文章主要介绍了ios – Swift 2.0中的动态可选属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经看过这篇文章 Optional dynamic properties in Swift,但我不想在NSObject中包装该类.这只是关于Realm数据库我没有nil属性,但我认为这是一个很好的方式来建模我的数据库.在可以在 https://realm.io/docs/swift/latest/中找到的Realm文档中,它表示支持选项.这是我的

dynamic var complete: Bool? = nil

这是我的

错误

Property cannot be marked dynamic because its type cannot be represented in Objective-C

我知道这是与上面的帖子相同的代码错误,但我很好奇,如果Realm文档说它支持它,他们还有另一种解决方法吗?

解决方法

来自 supported typesoptional properties的文档.

String,NSDate,NSData and Object properties can be optional. Storing optional numbers is done using 07002.

RealmOptional supports Int,Float,Double,Bool,and all of the sized versions of Int (Int8,Int16,Int32,Int64).

因此,使用标准的swift语法很好地支持String,NSDate,NSData和Object类型的选项.

对于使用RealmOptional完成的其他数字类型(例如Bool).然后,要使用此RealmOptional类型的变量,您可以访问其value属性,该属性是一个可选的,表示您的基础值.

// definition (defined with let)
let complete = RealmOptional<Bool>()  // defaults to nil
// usage
complete.value = false  // set non-nil value
...
complete.value = nil    // set to nil again
原文链接:https://www.f2er.com/iOS/332018.html

猜你在找的iOS相关文章