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.
在我的 iPhone 应用程序中,我使用了 coredata。
我想要使用 coredata 的表的列名(字段名)。
我一直在寻找它,但没有找到获得它的方法。
谢谢你的帮助。
NSManagedObjectModel有一个名为的方法entities,它给出了一堆NSEntityDescription(表),在那个类中你可以找到attributesByName并relationshipsByName给你列。
NSManagedObjectModel
entities
NSEntityDescription
attributesByName
relationshipsByName
您可以通过调用获取模型[[<yourManagedObjectContext> persistentStoreCoordinator] managedObjectModel]。
[[<yourManagedObjectContext> persistentStoreCoordinator] managedObjectModel]