I want to keep the separated and not completely wide look of the grouped tableView, but I don't want the square corners. Is there any way to set/fake this?
+1
A:
You can set the backgroundView
property on your cells to a view that looks like anything you want.
Squeegy
2010-03-31 16:34:53
Thanks, it looks like that's how I'll have to do it, but is there any way to move the cell textLabel and accessoryView in a little? I set the frame property but it doesn't change anything.
Rob Lourens
2010-03-31 17:11:58
Those built in views are sort of managed for you. You want to change where they go in a detailed way, then you must create your own subviews and add it to the cell in the spot you want.
Squeegy
2010-03-31 18:34:12
Ok, so I'll have to create a blank cell and add my own UILabel and accessory subviews. Thanks!
Rob Lourens
2010-03-31 22:10:18