cocoa touch - Multiple rounded-corner rows per UITableView section -
i know if create uitableview
grouped sections , 1 row per section, each row rounded corners, need more 1 row per section, each row still having rounded corners. how do that?
you can manipulate cell's calayer property
#import <quartzcore/quartzcore.h> [cell.layer setcornerradius:5.0f]; [cell.layer setmaskstobounds:yes]; [cell.layer setborderwidth:2.0f];
Comments
Post a Comment