Xcode 4:替换 NSManagedObject 子类

发布于 2024-12-11 20:51:47 字数 476 浏览 0 评论 0原文

我有一个来自 Xcode 3 的项目,我对其进行了转换过程以使其与 Xcode 4 兼容。在此项目中,我的所有 NSManagedObject 子类都位于名称为“.xcdatamodeld”的组内。

如果我使用新属性更新数据模型中的实体,我希望该属性的方法在实体的 NSManagedObject 子类中可用。

在 Xcode 3 中,我将选择要重新生成的实体,然后选择“文件”->“文件”。新的。这将替换 .xcdatamodeld 组中的相应类。

在 Xcode 4 中,这是相同的过程,只是生成的 NSManagedObject 子类将转到除 .xcdatamodeld 组之外的任何地方。另外,我无法从该组中删除任何文件。没有任何错误消息或通知说明原因。当我按删除键时它什么也没做。

我使用的解决方法是转到 Finder(或终端),删除旧的类,然后将新生成的类移动到 .xcdatamodeld 目录。我是否缺少新的范式或其他什么?该解决方法似乎不必要地乏味。

I have a project from Xcode 3 that I put through the conversion process to make it Xcode 4 compatible. Within this project, all of my NSManagedObject subclasses are inside a group with a ".xcdatamodeld" name.

If I update an entity in my data model with a new attribute, I want the methods for that attribute to be available in my entity's NSManagedObject subclass.

In Xcode 3, I would select the entities I wanted to regenerate and would select File -> New. This would replace the appropriate classes in the .xcdatamodeld group.

In Xcode 4, it's the same process, except the generated NSManagedObject subclasses will go anywhere except for that .xcdatamodeld group. Also, I can't remove any files from this group. There aren't any error messages or notifications telling why. It just doesn't do anything when I press the delete key.

The workaround I use is to go to Finder (or Terminal), remove the old classes, and then move the newly generated classes to the .xcdatamodeld directory. Is there a new paradigm that I'm missing or something? The workaround seems unnecessarily tedious.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追风人 2024-12-18 20:51:47

从 Xcode 4 开始,“xcdatamodeld 组及其下的 NSManagedObject 子类文件”范例似乎已被删除。它在 Xcode 4 中的工作方式是数据模型作为文件节点存在,并且 NSManagedObject 子类存在于项目中完全不同的组。我为完成 Xcode 3 项目的更新所做的是:

  1. 从项目中删除对数据模型的引用(引用)。

  2. 转到终端并移动 .xcdatamodeld 下的所有 NSManagedObject 子类文件
    目录到我的源目录下的新目录。 Finder 似乎阻止访问该目录,但终端不会。

  3. 在“将现有文件添加到项目”菜单项下将数据模型添加回项目。

  4. 将 NSManagedObject 子类文件添加回项目。

It appears that the "xcdatamodeld group with NSManagedObject subclass files under it" paradigm has been removed as of Xcode 4. The way it works in Xcode 4 is for the data model to exist as a file node and for the NSManagedObject subclasses to live in a different group in the project altogether. What I did to finish the update to my Xcode 3 project was this:

  1. Remove the reference (only the reference) to the data model from the project.

  2. Go to Terminal and move all the NSManagedObject subclass files that were under the .xcdatamodeld
    directory to a new directory under my source directory. Finder seems to prevent access to the directory, but Terminal does not.

  3. Add the data model back to the project under the "Add existing files to project" menu item.

  4. Add the NSManagedObject subclass files back to the project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文