How does the table view appear with rounded corners (as shown below)?
I would appreciate any sample code or may be some t开发者_StackOverflowutorial for having the table look rounded in the corners. Each section title also appears different from the conventional way..
It is a UITableViewStyleGrouped you can initialize it with:
- (id)initWithFrame:(CGRect)frame style:UITableViewStyleGrouped
You can implement datasource and delegate methods for UITableView and take Custom UITableView cell which has UITextField or add UITextField as sub view in cell's contentView
精彩评论