June 2014
Beginner to intermediate
434 pages
9h 49m
English
Tables are great for displaying data. We are going to use a table control provided by Cocos2D to display a list of the highest scored points by our players. The table will contain a list of player names and their scores.
Since we are not prompting for the player's name just yet, we are going to display dummy data, and in the next section, we are going to replace it with real highscores.
Let's start:
HighscoresScene.h file and import the cocos2d-ui.h header:#import "cocos2d-ui.h"
HighscoresScene class conform to CCTableViewDataSource:@interface HighscoresScene: CCScene<CCTableViewDataSource>
HighscoresScene.m file and define the constants of the ...