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{
:
:
:
}
Please sign in to leave a comment.
Use Refactoring->Change Signature and delete the parameter.