Time for action – creating the Cocohunt Xcode project
Let's start creating this game by creating a new Xcode project using the Cocos2D template, just as we did with HelloWorld
project, using the following steps:
- Start Xcode and navigate to File | New | Project… to open the project creation dialog.
- Navigate to the iOS | cocos2d v3.x category on the left of the screen and select the cocos2d iOS template on the right. Click on the Next button.
- In the next dialog, fill out the form as follows:
- Product Name:
Cocohunt
- Organization Name:
Packt Publishing
- Company Identifier:
com.packtpub
- Device Family:
iPhone
- Product Name:
- Click on the Next button and pick a folder where you'd like to save this project. Then, click on the Create button.
- Build and run the project to make sure that everything works. After running the project, you should see the already familiar Hello World screen, so we won't show it here.
Note
Make sure that you select the correct simulator version to use. This project will...