iphone Core Data Unresolved error while saving

后端 未结 7 1397
猫巷女王i
猫巷女王i 2020-11-30 16:33

I am getting a strange error message from the core data when trying to save but the problem that the error is not reproducible ( it appears at different times when doing dif

7条回答
  •  醉梦人生
    2020-11-30 16:52

    I had transient property of type int that wasn't optional. Obviously, when it was set to 0, 1570 error appear. Just changed all my transient properties to optional. Nil-check logic can be implemented in code if necessary.

提交回复
热议问题