经过很多麻烦后,我终于将我的代码转换为
Swift 3.0.
但似乎我的incrementID功能不再起作用了?
有什么建议我可以解决这个问题吗?
我的incrementID和primaryKey函数就像他们现在看起来一样.
override static func primaryKey() -> String? { return "id" } func incrementID() -> Int{ let realm = try! Realm() let RetNext: NSArray = Array(realm.objects(Exercise.self).sorted(byProperty: "id")) as NSArray let last = RetNext.lastObject if RetNext.count > 0 { let valor = (last as AnyObject).value(forKey: "id") as? Int return valor! + 1 } else { return 1 } }
解决方法
这里不需要使用KVC,也不需要创建排序数组来获得最大值.你可以这样做:
func incrementID() -> Int { let realm = try! Realm() return (realm.objects(Exercise.self).max(ofProperty: "id") as Int? ?? 0) + 1 }