将所有 plist 数组放入一个数组的有效方法?
如果我有一个结构如下的 plist:
Root Array
Item 0 Dictionary
City String New York
People Array
Item 0 String Steve
Item 1 String Paul
Item 2 String Fabio
Item 3 String David
Item 4 String Penny
Item 1 Dictionary
City String London
People Array
Item 0 String Linda
Item 1 String Rachel
Item 2 String Jessica
Item 3 String Lou
Item 2 Dictionary
City String Barcelona
People Array
Item 0 String Edward
Item 1 String Juan
Item 2 String Maria
那么将所有人员的姓名放入一个大 NSArray 中的最有效方法是什么?
If I have a plist which is structured like this:
Root Array
Item 0 Dictionary
City String New York
People Array
Item 0 String Steve
Item 1 String Paul
Item 2 String Fabio
Item 3 String David
Item 4 String Penny
Item 1 Dictionary
City String London
People Array
Item 0 String Linda
Item 1 String Rachel
Item 2 String Jessica
Item 3 String Lou
Item 2 Dictionary
City String Barcelona
People Array
Item 0 String Edward
Item 1 String Juan
Item 2 String Maria
Then what is the most efficient way of getting all the names of the people into one big NSArray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最短但可能非常低效的方法:
正常方法:
The shortest but probably very inefficient way:
the normal way: