How to modify a structure of method?

I want to modify a structure of method like below.
(delete argument.)

How to do like this?

before)
- (void)AdjSpritePosition:(CGPoint)cgp_Anchor{
:
:
:
}


after)
- (void)AdjSpritePosition{
:
:
:
}

0

Use Refactoring->Change Signature and delete the parameter.

0

请先登录再写评论。