方便地对tableView的cell的四个角进行圆角化处理
- import "UITableView+CornerRadius.h"
- tableView.enableCornerRadiusCell = YES
- tableView.cornerRadius = 5.f;
- tableView.cornerRadiusStyle = KYTableVIewCornerRadiusStyleSectionTopAndBottom
This category hooked the private method of UITableView
Under MIT license