Is it possible to add a border style to a UITableView?
Not just bordercolor and borderwidth.
For example a grooved border style?
Try to this code may be helped you....
Written on this code in your view did load methods and import the QuartzCore framework in the your .h file or .m file.
[myTBL.layer setBorderWidth: 1.0];
[myTBL.layer setCornerRadius:8.0f];
[myTBL.layer setMasksToBounds:YES];
[myTBL.layer setBorderColor:[[UIColor blackColor] CGColor]];
Happy coding.....