I have a UITableView reading from a NSMutableArray, which loads from a file at start, and saves at terminate.
I can insert rows just fine (which are the sections in the UITableView).
I am just trying to figure out how to add a something like this:
Where the headers (A, B, H) would be the car name (which I already can insert and have setup), and each entry for that car like the name inside of it.
Right now here is how I insert something into my row:
I assume I would be looking at something like:
Thanks,
Garrett
I can insert rows just fine (which are the sections in the UITableView).
I am just trying to figure out how to add a something like this:
Where the headers (A, B, H) would be the car name (which I already can insert and have setup), and each entry for that car like the name inside of it.
Right now here is how I insert something into my row:
Code:
[mainDelegate.carsArray insertObject:newCar atIndex:[mainDelegate.carsArray count]];
I assume I would be looking at something like:
Code:
[mainDelegate.carsArray insertObject:newEntry atIndex:[COLOR="Navy"][B][U]CAR-INDEX-HERE[/U][/B][/COLOR]];
Thanks,
Garrett