在 xcode 4 中生成核心数据属性的代码
在 xcode 3 中,数据模型构建器中有一个有用的功能,您可以突出显示实体中的某些属性/关系,右键单击,然后选择将方法和属性声明复制到剪贴板。 (如果您也想要 Objective-c 2.0 属性声明,您可以选择)。然后你可以将它们粘贴到你的 NSManagedObject 子类中。
我知道你仍然可以生成整个类文件;但如果您要向现有实体添加属性,则这没有帮助。他们从 Xcode 4 中删除了这个功能吗?我一直用它!
In xcode 3 there was a helpful feature in the data model builder where you could highlight some attributes/relationships in an entity, right-click, and choose to copy method and property declarations to the clipboard. (You could choose if you wanted objective-c 2.0 property declarations also). Then you could paste them into your NSManagedObject subclass.
I see how you can still generate the entire class file; but this isn't helpful if you are adding attributes to an existing entity. Have they removed this feature from xcode 4? I used it all the time!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅核心数据模型编辑器帮助:创建 Objective-C托管对象的访问器方法
See the Core Data Model Editor Help: Creating Objective-C Accessor Methods for a Managed Object
您可能会发现 MoGenerator 很有用。
You may find MoGenerator useful.
请注意,特殊的粘贴菜单项仅出现在“编辑”菜单中,而不是源编辑器中的上下文菜单中。
Watch out for the fact that the special paste menu item only appears in the Edit menu not the contextual menu in the source editor.