我有一个 int ,由于某种原因,它在 16 岁左右后不起作用。这是我的代码:
NSArray *sortedArray;
sortedArray = [doesntContainAnother sortedArrayUsingFunction:firstNumSort context:NULL];
int count2 = [sortedArray count];
//NSLog(@"%d", count2);
int z = 0;
while (z < count2) {
NSString *myString = [sortedArray objectAtIndex:z];
NSString *intstring = [NSString stringWithFormat:@"%d", z];
NSString *stringWithoutSpaces;
stringWithoutSpaces = [[myString stringByReplacingOccurrencesOfString:intstring
withString:@""] mutableCopy];
[hopefulfinal addObject:stringWithoutSpaces];
NSLog(@"%@", [hopefulfinal objectAtIndex:z]);
z++;
}
编辑:这不是 int,而是 stringWithoutSpaces 线......我不知道是什么原因造成的。
所以它(NSLog,见上面的 z++)看起来像这样:
“这里”
“任何”
“17 随便”
“18这个”
等等