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

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -