4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Realmのクエリの表記で誤った場合のエラー その1

Posted at

Xcodeエラー "Property 'AAA' not found in object of type 'ObjectType'"

このエラーが出る原因は他にもあるかもしれないけど、自分の場合について
記載。
自分の場合はRealmのクエリの設定方法が間違っていました。

    let value = "AAA"
    realm.objects(ObjectType).filter("cond = \(value)")
    let value = "AAA"
    realm.objects(ObjectType).filter("cond = '\(value)'")

細かいところですが\(value)''(シングルクォーテーション)で
囲う必要があります。忘れがちなので注意します。

4
1
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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?