#import <UIKit/UIKit.h>
@class game;
@class MainMenu;
@interface gameOver : UIViewController {
IBOutlet UIButton *paButton;
IBOutlet UILabel *fScore;
game *playagain;
back *MainMenu;
IBOutl开发者_如何学JAVAet int hs;
}
@property (nonatomic, retain) UIButton *paButton;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil highScore:(int)highScore;
-(IBAction) playAgain;
-(IBAction) goBack;
@end
You have not declared back
anywhere. If it is an Objective-C class too, just add the following to the forward declarations:
@class back;
精彩评论