LoginSignup
6
6

More than 5 years have passed since last update.

Realmであったら更新、なければ追加

Posted at

Realmでデータがあったら更新、なければ追加をしたい時のメソッドが変更になってたためメモ。

前までは

try! realm.write() {
    realm.addOrUpdateObject(entry)
}

けど今は

try! realm.write() {
    realm.add(item, update: true)
}

※true:なければ更新する

と書けば良いようです。

override class func primaryKey() -> StringでPK指定してる前提っぽいです。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6