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.
我拥有UserInfo.xcdatamodeld并对应于实体 UserInfo 和 Department。因此,如果我更改或更新我的 xcdatamodeld 文件,即在其中添加新属性或更新关系,这些更改是自动反映在我的 NSManagedObject 类文件中还是我必须重新创建类?
UserInfo.xcdatamodeld
每次更新模型文件时都需要创建 NSManagedObject 类。当您这样做时,您的类将使用最新的可用属性和关系进行更新。您也可以手动添加属性,但为了避免人为错误,更好的方法是删除旧类并动态添加它们。