我使用 NSArray 进行了这项工作,直到我意识到我需要将一个字符串插入到数组中。现在我将其更改为 NSMutableArray,但我的语法有问题。我可以在 NSMutable 数组中使用 componentsJoinedByString 吗?
NSString *item;
int numofSeg;
int needSeg;
if (textfield.text == @"::") {
numofSeg = 0;
}
NSMutableArray *dlist = [[NSMutableArray alloc]init];
//take string from textfield and split it into a list on colons.
dlist = [textfield.text componentsSeparatedByString:@":"];
//run through list to count how many segments. Non blank ones.
for (item in dlist) {
if (item != @""){
numofSeg = numofSeg + 1;
NSLog(@"%@",numofSeg);
}
}
//determine number of segments
needSeg = 8 - numofSeg;
while (needSeg > 0) {
//insert 0000 at blank spot
[dlist insertString:@"0000" atIndex:@""];
needSeg = needSeg - 1;
}
for (item in dlist) {
if (item == @"") {
//remove blank spaces from list
[dlist removeAllObjects:item];
}
}
//join the list of times into a string with colon
NSString *joinstring = [dlist componentsJoinedByString:@":"];
NSLog(@"%@",joinstring);