在 cocos2d 中显示 plist 中的多行?

发布于 2024-10-21 00:00:28 字数 171 浏览 6 评论 0原文

我有一个问题,我正在创建一个测验游戏,有几个问题很长,需要分成五行,并且不知道我正在这样做,我该如何解决这个问题,我将这个问题放在一个 plist 中,然后我制作[问题 setString : [NSString stringWithFormat :@"%@", dictPerguntas]];要在屏幕上显示,需要帮助!谢谢。

I have a problem, I'm creating a quiz game and have a few questions long and need to break up in five rows and not knowing I'm doing this, how can I fix this, I get this question a plist and I make a [question setString : [NSString stringWithFormat :@"%@", dictPerguntas]]; to display on screen, need help! Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很快妥协 2024-10-28 00:00:28

很抱歉,我的答案在前面,但没有看到,我实际上想在几行上显示查询,并且已经找到了如何做到这一点,感谢您的帮助。

如果有人正在寻找解决方案。

CCLabel *question = [CCLabel labelWithString:@"Question"                                          dimensions:CGSizeMake(220, 100)                                          alignment:UITextAlignmentCenter                                        fontName:@"Arial" fontSize:16];

question.color = ccc3(0,0,0);
[question setPosition:ccp(160, 365)];
[self addChild: question];
[question setString:[NSString stringWithFormat:@"%@",dictQuestions]];

I'm sorry but my answer was in front and did not see, I actually wanted to display a query on several lines, and have found how to do this, thanks for the help.

If anyone is looking for the solution.

CCLabel *question = [CCLabel labelWithString:@"Question"                                          dimensions:CGSizeMake(220, 100)                                          alignment:UITextAlignmentCenter                                        fontName:@"Arial" fontSize:16];

question.color = ccc3(0,0,0);
[question setPosition:ccp(160, 365)];
[self addChild: question];
[question setString:[NSString stringWithFormat:@"%@",dictQuestions]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文