gpt4 book ai didi

objective-c - 为字符串数组的每个元素添加前缀

转载 作者:搜寻专家 更新时间:2023-10-30 19:58:36 28 4
gpt4 key购买 nike

有没有一种快速的方法可以为字符串数组中的每个元素添加一个字符串前缀?

最佳答案

定义一个类NSMutableString

@implementation NSMutableString (AppendPrefix)

- (void)appendPrefix:(NSString *)prefix {
[self insertString:prefix atIndex:0];
}

@end

然后做:

[array makeObjectsPerformSelector:@selector(appendPrefix:) withObject:@"some_prefix"];

array 这里是 NSMutableStringNSArray

关于objective-c - 为字符串数组的每个元素添加前缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5904113/

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