改变UITableViewCell按下去的颜色

UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor redColor]];
[cell setSelectedBackgroundView:bgColorView];
[bgColorView release];
原文地址:https://www.cnblogs.com/joesen/p/3270754.html