我应该如何构建我的 .plist 数组和字典?
我有一个 UITableView,它有几个子 UITableView,每个 UITableView 也可能有 1 或 2 个子视图。
我想创建一个 plist 来跟踪和构造所有单元格名称和内容。
男人观点->儿童->儿童->儿童->详细信息
构建此结构的最佳方法是什么?数组还是字典?
I have UITableView that will have several child UITableViews which may also have 1 or 2 childs each.
I want to create a plist to keep track and structure all the cell names and stuff.
Man view -> Child -> Child -> Child -> Detail
What is the best way to structure this? Array or Dictionary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要一个字典数组,其中每个数组代表一行,字典包含有关单元格以及可能的子表视图的信息。考虑对此进行建模 设置包 plist 格式。
You will probably want an array of dictionaries, where each array represents a row and the dictionary contains info about the cell, and potentially the child table views. Consider modeling this off the settings bundle plist format.