Reputation: 38228
Since the binding between handler method and nib file is done graphically, what's the easiest way to rename my handler in Xcode without breaking that event handling?
Upvotes: 1
Views: 146
Reputation: 21805
-functionName:
Upvotes: 1
Reputation: 92384
Right-click on the name of your method in your .h or .m file, select Refactor -> Rename...
. This also takes care of your XIBs.
Upvotes: 4