如何在 CoreData 中存储 typedef 枚举

发布于 2024-09-14 06:15:22 字数 406 浏览 5 评论 0原文

我有一个 typedef 枚举,用于表示排队系统中的作业状态,它被定义为

typedef enum  {
kTWjobStateRunning,
kTWjobStateQueued,
kTWjobStateError
}TWjobState;

一切都很好,但现在我想将其存储为 CoreData 中的属性。我的第一个想法是枚举基本上是一个整数,那么将 TWjobState 包装在 NSNumber 中可以吗?我必须使用强制转换来说服编译器吗?

最佳实践问题
我经常在 Cocoa 和 Foundation 类中看到枚举的使用以及位掩码的使用。是否有更现代、更面向对象的方法来实现相同的目标?

感谢您的帮助。

I have a typedef enum I use to represent a state of a job in a queueing system and it is defined as

typedef enum  {
kTWjobStateRunning,
kTWjobStateQueued,
kTWjobStateError
}TWjobState;

Everything is fine, but now I would like to store it as an attribute in CoreData. My first idea is that an enum is basically an integer, so would wrapping the TWjobState in a NSNumber work? Do I have to use casts to persuade the compiler?

Best practice question
I saw this use of enums often in Cocoa and Foundation classes and also the use of bitmasks. Is there a more modern, more object-oriented way to achieve the same?

Thanks for your help.

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

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

发布评论

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

评论(1

﹏半生如梦愿梦如真 2024-09-21 06:15:23

将枚举存储在 NSNumber 中是执行此操作的正确方法。

Storing enums in an NSNumber is the correct way to do this.

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