使用 NSDitonary 对 UITablview 进行排序

发布于 2024-12-27 02:50:00 字数 319 浏览 0 评论 0原文

我有一个 NSDictonary,里面有这样的景点:

“埃菲尔铁塔”代表关键“景点”,“巴黎”代表关键“国家”

“金门”代表关键“景点”,“美国”代表关键“国家”

“蜡像馆” “对于关键的“景点”,“巴黎”对于关键的“国家”

现在的问题是,我想将我的nsdictonary排序为uitableview......应该有像巴黎和美国这样的部分

,在这个部分中应该有巴黎部分中包含巴黎关键的所有景点以及美国部分中包含美国关键的所有景点....

有人提示我如何执行此操作吗?

谢谢你的帮助...我真的需要它:-)

I have a NSDictonary with sights in it like this:

"Eiffel Turm" for key "sight", "paris" for key "country"

"Golden Gate" for key "sight", "usa" for key "country"

"Wax Museum" for key "sight", "paris" for key "country"

Now the question is, I would like to sort my nsdictonary into a uitableview... there should be sections like paris and usa

and in this sections there should be all sights with key paris in the paris section and all sights with key usa in the usa section....

does anybody have a hint for me how to do this?

thank you for your help... i realy could need it :-)

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

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

发布评论

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

评论(1

如果没有你 2025-01-03 02:50:00

在这种情况下,您需要实现 UITableViewDataSource 协议。这允许您定义多个部分、每个部分的单元格数量以及每个部分应使用的单元格:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDataSource_Protocol/Reference/Reference.html

您可以在此处查看示例:

http://www.iosdevnotes.com/2011/10/uitableview-tutorial/

In this case, you need to implement the UITableViewDataSource protocol. This allows you to define multiple sections, the number of cells per section, and the cells that should be used for each of these:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDataSource_Protocol/Reference/Reference.html

You can view an example with this here:

http://www.iosdevnotes.com/2011/10/uitableview-tutorial/

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