i have a problem for read a csv file. Only the last line of csv file is display. However in my fetchedResultsController i have 2 lines This is the code :
NSStri
Try to use NSMutableString instead of NSString:
NSMutableString *writeString = [NSMutableString string];
And then in the for loop:
[writeString appendString:[NSString stringWithFormat:@"%@, %@, %@, %@, \n", object1, object2, object3, object4]];