Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我阅读了下面的链接,仍然想知道:是否可以设置核心数据属性(例如,person.name = @"Matt"导致故障触发?
person.name = @"Matt"
绝对 - 读取或设置 Core Data 属性可能会引发故障。很容易看出 willRead 是如何导致这种情况的(必须去持久化存储来获取数据),而 willWrite 似乎也做了同样的事情(我可以想象它想将要写的内容与实际存在的内容进行比较,来确定该级别是否真的有任何事情要做NSPersistentStoreController)。
NSPersistentStoreController