2つのUIViewController、GameControllerとRhythmControllerがあります。このようにRhythmController.hでRhythmDelegateを定義しました。RhythmControllerのdoEndGameメソッドは、デリゲートプロトコルを実装するGameControllergameOverのデリゲートメソッドを呼び出すことになっています。
なぜこれが機能しないのか理解できません...私のコードにエラーがありますか?助けてくれてありがとう。
@class RhythmView,RhythmDelegate, RhythmController;
@protocol RhythmDelegate
@required
-(void)gameOver:(RhythmController*)aRhythmController;
@end
@interface RhythmController : UIViewController <UIGestureRecognizerDelegate, UIAlertViewDelegate> {
.....
}
@property (nonatomic, retain) IBOutlet NSObject<RhythmDelegate>* delegate;
RhythmController.m内で、デリゲート呼び出しは次のようになります。
@implementation RhythmController
@synthesize delegate;
-(void)doEndGame{
isPaused = true;
[delegate gameOver:self];
}
doEndGameがブレークポイントを内部として呼び出されていることを確認します。ただし、デリゲートを実装するGameControllerで必要なメソッドには移動しません。
#import <UIKit/UIKit.h>
#import "CoinsController.h"
#import "CoinsGame.h"
#import "HighscoreController.h"
#import "RhythmController.h"
#import "RhythmView.h"
@interface GameController : UIViewController <RhythmDelegate> {
IBOutlet UIView *landscapePlayView;
IBOutlet UIView *landscapeGameHolderView;
IBOutlet UIView *portraitPlayView;
IBOutlet UIView *portraitGameHolderView;
IBOutlet UIView *loadingView;
IBOutlet UIView *welcomeView;
IBOutlet UIButton *continueButton;
IBOutlet UIView *aboutView;
IBOutlet UIView *playView;
IBOutlet UIView *rhythmView;
//IBOutlet UIView *levelSelectView;
IBOutlet UILabel *musicNotation;
IBOutlet CoinsController *coinsController;
IBOutlet RhythmController *rhythmController;
IBOutletCollection(UILabel) NSArray *remainingTurnsLabels;
IBOutletCollection(UILabel) NSArray *scoreLabels;
IBOutlet HighscoreController *highscoreController;
CoinsGame* previousGame;
BOOL isPlayingGame;
}
-(void)setPreviousGame:(CoinsGame*)aCoinsGame;
-(CoinsGame*)currentGame;
- (IBAction)continueGameClicked:(id)sender;
- (IBAction)newGameClicked:(id)sender;
- (IBAction)highScoresClicked:(id)sender;
- (IBAction)aboutClicked:(id)sender;
- (IBAction)aboutDoneClicked:(id)sender;
- (IBAction)highscoreDoneClicked:(id)sender;
-(void)loadImages;
-(void)showPlayView: (UIInterfaceOrientation)interfaceOrientation;
-(void)doPause;
@end
GameController.mでは、メソッドは次のとおりです。
// RhythmDelegate Tasks
-(void)gameOver:(RhythmController*)aRhythmController{
NSLog(@"Came into gameOver delegated task");
[self.view addSubview: welcomeView];
}