gpt4 book ai didi

ios - iOS 嵌套数组的 objectAtIndex

转载 作者:行者123 更新时间:2023-11-28 18:22:11 27 4
gpt4 key购买 nike

初学者 iOS 开发问题在这里。

我有以下格式的 plist:

enter image description here

我在我的应用程序中使用以下方法将这个 plist 转换为一个数组:

NSMutableArray *array2 = [[NSMutableArray alloc] initWithContentsOfFile:path];

并使用 NSLog 验证了内容。

但是我遇到的问题是理解 objectAtIndex。如何在 Item1 中获取 Item2,即值 6?我习惯了 Javas "array[1][2]"风格 :p

最佳答案

实际上您仍然可以在 Objective-C 中使用 array[1][2](使用 Xcode 4)。否则,“Objective-C 方式”是:

[[array objectAtIndex:1] objectAtIndex:2];

但是它有更多的代码,而且对于来自大多数其他背景的人来说,可读性也不是很好。

关于ios - iOS 嵌套数组的 objectAtIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18363702/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com