views:

839

answers:

1

I have a UITableView (grouped style) and I would like to adjust the width of the cells such that there is less padding on the sides. I want the cells to occupy the full width of the table view (like the plain style tableview).

+1  A: 

I think you can't with the grouped style of the UITableView. You could however use the plain style, and create your own view to show as the cell, just like the grouped view.

drvdijk
I'll give that a try later and see how it looks. Thanks.
Peter Parker