1. cell 默认(Defalut)状态的选中样式(见下图):

2. cell (Gray)状态的选中样式(见下图):

3. cell (Blue)状态的选中样式(见下图):

注意:
- 自从 iOS7.0 以后
UITableViewCellSelectionStyleBlue
就不起作用了
-
默认都是
UITableViewCellSelectionStyleDefault
即:
UITableViewCellSelectionStyleGray
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
网友评论