制作本地高分榜 iPhone

发布于 2024-12-23 07:12:06 字数 122 浏览 1 评论 0原文

我需要为我的游戏制作一个包含 10 个条目的本地高分列表。我没有看过 NSDictionary 的例子,但它们都非常糟糕!谁能快速告诉我如何首先对前十名分数进行排序,然后存储它们,然后显示它们(按顺序)???

谢谢

I need to make a local highscore list with 10 entries for my game. I have neen looking at NSDictionary examples but they are all pretty bad! Could anyone quickly show me how to firstly order the top ten scores, then store them, and then display them (in order)???

Thanks

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

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

发布评论

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

评论(2

忆依然 2024-12-30 07:12:06

创建类“Score”,其属性为:

NSString name(玩家名称)和double Score(玩家得分)。

然后将这个类的实例添加到一个 NSArray 中,并将这个 NSArray 放入 NSUserDefaults 中。当你需要它们时,只需从 NSUserDefaults 获取这个 NSArray 即可。就是这样。我认为 :)

Create class "Score" with properties:

NSString name (name of player) , and double score(player's score).

Then add instances of this class to one NSArray and put this NSArray to NSUserDefaults. And when you need them, just get this NSArray from NSUserDefaults. That's it. I think :)

忆梦 2024-12-30 07:12:06

将它们放入 NSArray 中,您可以使用 NSArray 提供的六种方法中的任何一种对它们进行排序。

Put them in an NSArray, you can sort them using any of the half dozen methods NSArray has for that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文