我在实现文件中声明了一个枚举,如下所示,并在我的接口中将该类型的变量声明为PlayerState thePlayerState;并在我的方法中使用了变量。但是我收到错误消息指出它是未声明的。如何在我的方法中正确声明和使用PlayerState类型的变量?:
在.m文件中
@implementation View1Controller
typedef enum playerStateTypes
{
PLAYER_OFF,
PLAYER_PLAYING,
PLAYER_PAUSED
} PlayerState;
在.h文件中:
@interface View1Controller : UIViewController {
PlayerState thePlayerState;
在.m文件中的某些方法中:
-(void)doSomethin{
thePlayerState = PLAYER_OFF;
}
2
现在枚举的类型是PlayerState。playerStateTypes变成什么?
—
user4951 2012年
有关NS_ENUM及其最新现代语法的信息,请参阅Mattt Thompson 发表的NS_ENUM和NS_OPTIONS。
—
罗勒·布尔克