6

我正在 Obj.C 中寻找一种简单的方法来在字符串的每个字符之间添加一个空格。所以“1234”看起来像“1 2 3 4”。

我在这里找到了一个完美的 javascript 示例:https ://stackoverflow.com/a/7437422/949538

有谁知道 Obj.C 有类似的东西吗?Kerning 是 iOS 中的 PITA,无论如何这就是我所需要的……

想法/评论?

谢谢!- 德鲁

4

3 回答 3

9

要正确执行此操作,考虑到 David Rönnqvist 的评论中提到的问题,请执行以下操作:

NSMutableString* result = [origString mutableCopy];
[result enumerateSubstringsInRange:NSMakeRange(0, [result length])
                           options:NSStringEnumerationByComposedCharacterSequences | NSStringEnumerationSubstringNotRequired
                        usingBlock:^(NSString *substring, NSRange substringRange, NSRange enclosingRange, BOOL *stop){
     if (substringRange.location > 0)
         [result insertString:@" " atIndex:substringRange.location];
}];
于 2012-06-16T10:49:58.960 回答
5

试试这个 :

NSString *string =[NSString stringWithString:@"1234"];
NSMutableArray *buffer = [NSMutableArray arrayWithCapacity:[string length]];
for (int i = 0; i < [string length]; i++) {
    [buffer addObject:[NSString stringWithFormat:@"%C", [string characterAtIndex:i]]];
}
NSString *final_string = [buffer componentsJoinedByString:@" "];
于 2012-06-16T03:55:08.723 回答
0

做这个:

    NSString *string =[NSString stringWithString:@"1234"];

    NSMutableString *spacedString= [NSMutableString stringWithString:[NSString stringWithFormat:@"%C",[string characterAtIndex:0]]];

    for(int i = 1; i<[string length];i++)
    {
        [spacedString appendString:[NSString stringWithFormat:@" %C",[string characterAtIndex:i]]];
    }
于 2012-06-16T09:26:11.343 回答