【发布时间】:2011-12-24 06:44:18
【问题描述】:
我需要帮助,我有 typedef 枚举:
typedef enum category
{
All,
category1,
category2,
category3,
category4,
} category;
能否在类别中添加新的枚举,例如:
typedef enum category
{
All,
category1,
category2,
category3,
category4,
category5,
category6,
category7,
} category;
【问题讨论】:
-
您的意思是支持您的应用程序的新版本,还是为子类添加新选项之类的?
-
@jrturton,是的,支持新版本的应用程序
标签: objective-c cocoa-touch cocoa enums typedef