-(void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event
{
CGPoint location = [touch locationInView:[touch view]];
CGPoint convertedlocation = [[CCDirector sharedDirector] convertToGL:location];
bb=[CCMenuItemImage itemFromNormalImage:@"Aqua-ball.png" selectedImage:@"Aqua-ball.png" target:self selector:@selector(move:)];
menu1=[CCMenu menuWithItems:bb, nil];
//ignore this.....
}
-(void) move:(CGPoint) touch{
[character runAction:[CCMoveTo actionWithDuration:1 position:ccp(touch.x,touch.y)]];
}
@selector(move:converted location) という CCmenuitem セレクターを作成しようとしていますが、パラメーターを受け入れることができないようです。パラメーターをそのまま渡すことができるものはありますか?