-1

私が置くとき

[_nextProjectile runAction:[CCSequence actions:
                            [CCRotateTo actionWithDuration:rotateDuration angle:cocosAngle],
                            [CCCallFunc actionWithTarget:nil selector:nil],
                            nil]];

xcodeはexecuteメソッドで例外をスローします

プラグマ マーク CCCallFuncN

@implementation CCCallFuncN

-(void) execute
{
    [targetCallback_ performSelector:selector_ withObject:target_];
}

@終わり

runAction がなくても問題なく動作します。?

4

1 に答える 1

1

以下の行を削除します。

[CCCallFunc actionWithTarget:nil selector:nil],

または、次のようにします。

[_nextProjectile runAction:[CCSequence actions:
                            [CCRotateTo actionWithDuration:rotateDuration angle:cocosAngle],
                            [CCCallFunc actionWithTarget:self selector:@selector(execute)],
                            nil]];


-(void) execute
{

}
于 2013-04-17T07:12:00.530 に答える