我上课了
@interface PlayScene : UIView
包含一些属性(这里有一些属性)
@property (readwrite, assign) int Figure1;
@property (readwrite, assign) int Figure2;
@property (readwrite, assign) int Figure3;
我得到了一个在PlayScene中调用的子视图
@interface gameOverMenu : PlayScene <UITextFieldDelegate>
我需要在我的子类中以某种方式得到这些属性。实际上我需要将它们设置为0,以便“再次播放”按钮正常工作。
答案 0 :(得分:0)
对于那些有同样问题的人,最初的问题是:
@interface gameOverMenu : UIView <UITextFieldDelegate>
他通过改变它来解决它:
@interface GameOverMenu : PlayScene <UITextFieldDelegate>