I just changed my class name from Group.h to CVGroup.h and therefore everything is affected in my code. Is it possible to refactor the whole project so that Group is refactored into CVGroup?
I just changed my class name from Group.h to CVGroup.h and therefore everything is
Share
In short, there is functionality that is supposed to do just that, but it doesn’t always catch all of the instances. You can select the class name in the header file and then do Edit > Refactor > Rename and that will try and catch all of the instances (this is in Xcode 4). The nice thing is that it will let you see the diff’s of where it was changed.
I will say from experience that this method usually missed several instances of the name, so a manual follow-up is almost always required.