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
1 comment

Use Refactoring->Change Signature and delete the parameter.

0

Please sign in to leave a comment.