Hello there,
I’m building an IOS app with your awesome platform and happened to notice lately that I receive a weird exception on my console log. This happens when i fetch data from tables. I narrowed it down by commenting out everything and leaving only the line where I do the query.
Here is the Error log:
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Menlo; color: #000000}
span.s1 {font-variant-ligatures: no-common-ligatures}
AnonymousObject -> setFieldsDirect: <RLMUnmanaged_Item> isInvalidated <__NSCFBoolean> EXCEPTION = [<RLMUnmanaged_Item 0x7fbcf7f39ca0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key isInvalidated.
And this is the code.
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Menlo; color: #3c828b}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Menlo; color: #000000}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Menlo; color: #000000; min-height: 21.0px}
span.s1 {font-variant-ligatures: no-common-ligatures; color: #c42275}
span.s2 {font-variant-ligatures: no-common-ligatures; color: #000000}
span.s3 {font-variant-ligatures: no-common-ligatures}
span.s4 {font-variant-ligatures: no-common-ligatures; color: #3c828b}
span.s5 {font-variant-ligatures: no-common-ligatures; color: #539aa4}
span.s6 {font-variant-ligatures: no-common-ligatures; color: #c81b13}
span.s7 {font-variant-ligatures: no-common-ligatures; color: #294c50}
let dataQuery = BackendlessDataQuery()
let queryOptions = QueryOptions()
queryOptions.related = ["formPhotoList"];
dataQuery.queryOptions = queryOptions
dataQuery.whereClause = "ownerId = '\(owner)'"
var error: Fault?
let bc = backendless?.data.of(Item().ofClass()).find(dataQuery, fault: &error)