Skip to content
nbasham edited this page Nov 14, 2012 · 4 revisions

Welcome. This project is the future destination for iOS code I write that is sharable with others. Currently, there is only one utility: DelimitedFile.

DelimitedFile creates an array of classes populated with a tab or comma separated (TSV or CSV) file. For example, if you've created MyClass you can create an array of them from a file of tab separated values named "data.tsv" by calling:

NSArray* a = [DelimitedFile loadTSV:@"data.tsv" toClass:[MyClass class]];

This is my first time using github so all suggestions and comments are welcome.

Clone this wiki locally