以前,我只有一個對象具有我需要的每個值。我「重新組合」了它們並製作了單獨的物體。我將新對象的類型添加到原始對象中。 如何將舊屬性值分配給對象的屬性? 下面是我的對象代碼: class MainObject: Object {
dynamic var id: Int = 0
// Schema 0
dynamic var otherId: Int = 0
dy
我正在嘗試使用記錄的方法之一來遷移領域數據庫並設置架構版本。我正在使用的代碼的類型是: let config = Realm.Configuration(
// Set the new schema version. This must be greater than the previously used
// version (if you've never set a sc
我將遷移添加到了我的項目中。經過很多工作後,我將其獨立運行。嘗試更新時出現錯誤 @PrimaryKey field 'id' does not support null values in the existing Realm file. Migrate using RealmObjectSchema.setNullable(), or mark the field as @Required
我正在嘗試創建具有包含特殊字符的列的Realm數據庫,並且都包含「2010」或「Share%」等數字。 我可以使用Realm Browser創建Realm,甚至使用http://www.realmgenerator.eu/創建Realm對象,但是當我將模型放入Xcode時,Xcode會抱怨命名約定。 class Contract: Object {
dynamic var Contrac