我的字符串很好,但是当它们被添加到数组中时,会在末尾添加一个奇怪的“\n\t\t”分组。因此,当我查看数组描述时,字符串“Apple”变成了“Apple\n\t\t”。
这有什么关系?我该如何解决?
添加:
它的 XML 代码。看起来像 [currentPlace appendString:string]; 会得到正确的部分,然后在下一轮添加 \n\t\t 。我通过交替使用布尔值解决了这个问题:
if (alternate == NO) {
[currentPlace appendString:string];
alternate = YES;
} else {
alternate = NO;
}
有没有更好的替代方法?我记得有一个案例+中断方式,但我忘记了如何去做。