Swift - 使用Realm (4) 如何讓你的id 自動增加 (auto increment)

本篇摘要
  • Realm implement auto increment


func incrementID() -> Int {
        return (database.objects(RealmItem.self).max(ofProperty: "id") as Int? ?? 0) + 1
    }

留言

這個網誌中的熱門文章

Swift - 自訂navigation bar style