You should just run a search and replace on the project file (if you are working with version control and with other developers you will have seen this file a lot without a doubt), it's the project.pbxproj file located inside the xxxxxxxx.xcodeproj file.
Just right click (Control + Click) on the file and select "Show Package Contents" to find the xcodeproj file.
This file holds all the information about your projects structure (groups, files etc), my project was called "SomethingIPhone" and then we decided to make it universal so I wanted to change it to simply "Something".
So I ran a search and replace.
But watch out, it looks like you're going to be okay doing this with your "MyClasses" folder but if that folder is the same as other files or folders you have in your filesystem for the project, you could shoot yourself in the foot doing this.
So be careful but it worked for me great.
Good luck, your question was form over a year ago, but I'm sure more people will end up here in the future.