开发者

How to Display data from a plist using cocos2d iphone?

I am creating a game of questions and answers for iphone using cocos2d, and I wonder how can I do to display the question o开发者_开发知识库n the screen using ccLabel seeking data from a plist. can someone help me with this!


What you want to do is grab it from your resources bundle, and save it into a dictionary. From there you have access to every value inside of your plist. That can be achieved with something like this:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSString *finalPath = [path stringByAppendingPathComponent:@"myList.plist"];
NSDictionary *plistData = [[NSDictionary dictionaryWithContentsOfFile:finalPath] retain];

Then when you're ready to display the question just use the [plistData objectForKey: ] method. Do you need help setting up the label also?


Sure man. You want to set it up like this:

CCLabel* questionLabel = [CCLabel labelWithString:@"Your Question" 
                               fontName:@"Marker Felt" fontSize:64];


CGSize size = [[CCDirector sharedDirector] winSize];

label.position = ccp( size.width /2 , size.height/2 );

[self addChild: questionLabel];

That'll display your label in the middle of the screen. You can change the position, font, etc. The way you access your data from the plist is determined by exactly how you set it up. But using the technique I gave your earlier you shouldn't have a problem.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜