gpt4 book ai didi

objective-c - 如何按字符串中的每个字符拆分 NSString?

转载 作者:太空狗 更新时间:2023-10-30 03:41:26 25 4
gpt4 key购买 nike

我有以下代码,它按我预期的那样工作。我想知道是否有一种可接受的 Cocoa 方法可以将字符串拆分为数组,并将字符串的每个字符作为数组中的一个对象?

- (NSString *)doStuffWithString:(NSString *)string {
NSMutableArray *stringBuffer = [NSMutableArray arrayWithCapacity:[string length]];
for (int i = 0; i < [string length]; i++) {
[stringBuffer addObject:[NSString stringWithFormat:@"%C", [string characterAtIndex:i]]];
}

// doing stuff with the array

return [stringBuffer componentsJoinedByString:@""];
}

最佳答案

因为一个字符串已经是一个字符数组,这似乎……是多余的。

关于objective-c - 如何按字符串中的每个字符拆分 NSString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2469011/

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