I have looked around to find a solution for setting the background color of the accessoryView to the same background color as the cell´s contentView.
cell.co
For anyone else who might stumble on this and wants to set their UITableViewCell
background to a pattern or texture rather than a solid color, you can do so like this:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"pattern.png"]];
}