iOS-UITableViewCell 选中样式分析

1. cell 默认(Defalut)状态的选中样式(见下图):
iOS-UITableViewCell 选中样式分析_第1张图片
cell默认选中状态(default).png
2. cell (Gray)状态的选中样式(见下图):
iOS-UITableViewCell 选中样式分析_第2张图片
cell选中状态(Gray).png
3. cell (Blue)状态的选中样式(见下图):
iOS-UITableViewCell 选中样式分析_第3张图片
cell选中状态(Blue).png
注意:
  1. 自从 iOS7.0 以后 UITableViewCellSelectionStyleBlue就不起作用了
  • 默认都是
    UITableViewCellSelectionStyleDefault
    即:
    UITableViewCellSelectionStyleGray

    cell.selectionStyle = UITableViewCellSelectionStyleBlue;

你可能感兴趣的:(iOS-UITableViewCell 选中样式分析)