Alright, I might make this confusing, but hopefully not. So I have a UITableView that I want to section in 3: Details (A), Additional Details (B), and Assignment (C).
In the Details section, I want to just display information in the same way that the Contacts app does, but I don’t know how to configure the UITableViewCell to display that way.
In the Additional Details section, I want to display a normal section, so I actually got that covered.
In the Assignment section, I want to have a combination where two cells are normal and will link to other controllers and one cell is just a plain button. Is there something special I need to do for the button cell?
Right now I have a mix of buttons, table cells, and labels, so it looks kinda bad, and thus I want to clean it up and make the interface consistent.
Here’s a drawing of what I want to do:

And on a side note, after I click on a cell and it slides to the next controller and then I go back, the cell is still selected. How can I get it to un-select itself after the action it’s linked to is performed?
Thanks in advance for help!
I actually figured this out a couple of hours after I posted the question by digging into the documentation, and I ended up continuing work on my app and kind of disregarded this question. Anyway, it’s actually quite easy to change how the cells look. It’s all in the cell style.
The cell style determines how the cell looks; Default looks like B in my drawing, Value2 looks like A in my drawing.
And the arrow on right side is the accessory type, or in this case it’s the DisclosureIndicator.
I guess this is a perfect example of read the documentation first before asking. So here’s the docs I was reading:
UITableViewCell
UITableViewCellStyle
UITableViewCellAccessoryType