You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
Yes, I assign keys that not be used to NSNull.null. like
@"history": NSNull.null
Remove those null things will make it work again without modify the adapter.
jspahrsummers
changed the title
-[NSNull _fastCStringContents:]: unrecognized selector sent to instance
+managedObjectKeysByPropertyKey does not support NSNull, despite docs
Apr 14, 2015
replace all the
if (managedObjectKey == nil)
to
if (managedObjectKey == nil || [managedObjectKey isEqual:[NSNull null]])
will resolve the crash issue.
The text was updated successfully, but these errors were encountered: