I got class
@interface PlayScene : UIView
with some properties in it (here are some of them)
@property (readwrite, assign) int Figure1;
@property (readwrite, assign) int Figure2;
@property (readwrite, assign) int Figure3;
and I got a subView that is called in PlayScene
@interface gameOverMenu : PlayScene <UITextFieldDelegate>
and I need to get somehow those properties in my subclass. Actually I need to set them equal to 0 so that "Play Again" button works properly.