再会,
我的问题是我有一个设置屏幕,它是一个 CCLayer,我想在其中显示一个 UISwitch。我在我的 settings.m 中使用了这个代码
UISwitch * soundSwitch = [[UISwitch alloc] initWithFrame:CGRectMake(240,150,0,0)];
[soundSwitch addTarget:self action:@selector(soundButtonPressed:) forControlEvents:UIControlEventValueChanged];
[[[CCDirector sharedDirector] view] addSubview:soundSwitch];
但是现在这个开关是在游戏启动后立即显示的。我希望它仅在我的设置层初始化时出现。在这方面有什么帮助吗?