我有一个数组,行,由文本文件中的行组成。我想根据第一个字符串选择一个特定的行。所以我像这样遍历文件:
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,所以这不起作用。解决这个问题的最佳方法是什么?
汉克
答案 0 :(得分:0)
myMutableArray = [[str componentsSeparatedByCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@";"]] mutableCopy];
套装?