最佳答案
我在实现文件中声明了一个枚举,如下所示,并在接口中声明了一个类型为 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;
}