So I would like to have several values in one TableView cell.
Something like:
Name category price.
How do I do that?
Or are there a better way?
Several values in one TableView cell
You can define a custom cell, by sublassing UITableViewCell and create its nib.
In xib, you include the labels or UITextFields you need, connect them to outlets in the subclass.
Ok, I'll check it out, thanks!