If your project is simple, it simplest to just create a new project and copy your sources files, resources, etc. into the new project.
Because there is not simple way to rename a project. But you can try the following.
BACKUP YOUR PROJECT FIRST.
Assuming you're using the latest version of XCode (4.2.x), click on the top project node in the Project Navigator, then in the the File Inspector change the name of your project. Hit Enter and then you should get a panel asking to confirm the renaming of your project's target, prefix header file and any references to the app name in the main menu bar. Click Rename, and then OK.
Click the source folder in the Project Navigator. It should still have the old name project name. Click the arrow next to Full Path in the File Inspector to show the source folder in the Finder. Rename the folder in the Finder. Then go back to XCode and click the chooser button next to Path. Choose the now renamed folder. Then rename the group in the File Inspector.
Almost everything will have been updated to the new path. There are three exception.
Two exceptions are the target setting holding the path to the prefix file and the target setting holding the path to app's Info.plist. Click on the top project node in the Project Navigator. In the Project Editor, click on your target. Under the Build Setttings tab, find the Prefix Header setting. Under the target column (not the the project column, if you are in levels view) double-click the path. It should be OldName/NewName-Prefix.pch where OldName is the old name of your project and NewName is the new name of your project. Update it to be NewName/NewName-Prefix.pch. Now search for the Info.plist File setting and update its path in a similar way.
Another exception is that your existing scheme won't work. Go into the Product menu and choose Manage Schemes. Highlight the existing scheme and click the remove button at the bottom of the table. Click Delete to confirm. Then click Autocreate Schemes Now. Click OK.
Clean and build your project using the commands in the Product menu.