Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone personalized table Rounded corner table

I don't have too much experience on iphone screen designs but I need to make a table like this: (image), I made an investigation but I didn't find anything. This table needs to have a rounded corner and the user will be able to insert data, in this case first name, last name, etc... Right now I'm using SDK 4.3. if someone have an tutorial I would appreciate

Thank you,

editable rounded corner table

like image 422
avmauricio Avatar asked Jun 18 '12 22:06

avmauricio


1 Answers

You can customize table border. All you need to do is import QuartzCore/QuartzCore.h file.

and set following properties in viewDidLoad

tableView.layer.cornerRadius = 10.0f;
tableView.layer.borderColor = [UIColor grayColor].CGColor;
tableView.layer.borderWidth = 1;
like image 166
Rahul Wakade Avatar answered Oct 12 '22 21:10

Rahul Wakade