親クラスと子クラスがあります。GameObjectBase (親) GameObjectPlayer (子)。Child クラスのメソッドをオーバーライドして呼び出すと、
[myPlayerClass showNextFrame]
親クラスを one と呼んでいます。デバッガーで確認すると、myPlayerClass が確かにクラス タイプの GameObjectBase (親クラス) であることがわかりました。どうしてですか?
GameObjectBase.h
#import <Foundation/Foundation.h>
#import "cocos2d.h"
@class GameLayer;
@interface GameObjectBase : NSObject
{
/* CCSprite *gameObjectSprite; // Sprite representing this game object
GameLayer *parentGameLayer; */ // Reference of the game layer this object
// belongs to
}
@property (nonatomic, assign) CCSprite *gameObjectSprite;
@property (nonatomic, assign) GameLayer *parentGameLayer;
// Class method. Autorelease
+ (id) initWithGameLayer:(GameLayer *) gamelayer
imageFileName:(NSString *) fileName;
// "Virtual methods" that the derived class should implement.
// If not implemented, this method will be called and Assert game
- (void) update: (ccTime) dt;
- (void) showNextFrame;
@end
GameObjectPlayer.h
#import <Foundation/Foundation.h>
#import "GameObjectBase.h"
@interface GameObjectPlayer : GameObjectBase
{
int direction;
}
@property (nonatomic) int direction;
@end
GameLayer.h
#import "cocos2d.h"
#import "GameObjectPlayer.h"
@interface GameLayer : CCLayer
{
}
// returns a CCScene that contains the GameLayer as the only child
+(CCScene *) scene;
@property (nonatomic, strong) GameObjectPlayer *player;
@end
デバッガーで、GameLayer クラス内のこの関数の型「temp」を調べると、サブクラスの GameObjectPlayer ではなく、親クラスの GameObjectBase が与えられます。
- (void) update:(ccTime) dt
{
GameObjectPlayer *temp = _player;
[temp showNextFrame];
}