I have a UISearchDisplayController that I've added in IB. How can I make its tableview grouped with rounded corners?
Asked
Active
Viewed 221 times
2 Answers
0
Not sure what is the exact view you want to round but you can round any UIView
object by doing
#import <QuartzCore/QuartzCore.h>
yourView.layer.cornerRadius = 5;
Now simply outlet your view in IB and you should be done.
0
Seems like I can't unless I subclass it and change the tableview to the grouped type.

Sheehan Alam
- 60,111
- 124
- 355
- 556