UITableViewCellにいい感じに背景画像を適用するライブラリ書いた。
<pre class="code lang-objc" data-lang="objc" data-unlink>-(void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath {
[self.table setBackgroundImage:[UIImage imageNamed:@"cell_bg.png"]
withInsets:UIEdgeInsetsMake(8, 8, 7, 7)
forCell:cell
forRowAtIndexPath:indexPath];
}