gpt4 book ai didi

ios - iOS,如何使用NSArray确定plist中的字符串列表中的单词长度

转载 作者:行者123 更新时间:2023-12-01 18:00:52 25 4
gpt4 key购买 nike

我有一个plist,其中包含数千个字符串。

<plist version="1.0">
<array>
<string>Hello</string>
<string>Guitar</string>
<string>Geronimo</string>
......
</array>
</plist>

如您所见,每个字符串都有一定长度。
我正在NSMutableArray中加载单词:
NSMutableArray *theList = [[NSMutableArray alloc] initWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"myplist" ofType:@"plist"]]; 

现在,我要遍历List中的所有字符串,并确定每个单词的长度,以便我可以根据字符串的长度对它们进行分类。

此环境的新手-我尝试了几种变体,但可能未使用正确的语法。我该如何用 objective-c 做到这一点?

最佳答案

首先,您不需要可变的数组; NSArray就可以了。

for (NSString *string in theList)
{
NSUInteger length = string.length;
}

关于ios - iOS,如何使用NSArray确定plist中的字符串列表中的单词长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10164421/

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