循环遍历文件中的行并使用NSStrings填充NSMutablearray

时间:2014-04-07 16:44:13

标签: ios objective-c arrays

我有一个数组,行,由文本文件中的行组成。我想根据第一个字符串选择一个特定的行。所以我像这样遍历文件:

for(NSString *str in lines) 
{

    myMutableArray = [str componentsSeparatedByCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@";"]];

//Get myMutableArray[0] and check if it's the correct line

// If not, empty the NSMutableArray and start over
}

我知道循环中的代码行将返回NSArray,所以这不起作用。解决这个问题的最佳方法是什么?

汉克

1 个答案:

答案 0 :(得分:0)

myMutableArray = [[str componentsSeparatedByCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@";"]] mutableCopy];

套装?