Several values in one TableView cell

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?

Accepted Reply

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.

Replies

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!