Well, the naïve approach would be to use componentsSeparatedByString:, as suggested in the other answers.
However, if your data is truly in the CSV format, you'd do well to consider using a proper CSV parser, such as this one (which I wrote): https://github.com/davedelong/CHCSVParser