p; cell.selectionStyle = UITableViewCellSelectionStyleNone; [cpp] view plaincopy
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { //cell被选中后的颜色不变 cell.selectionStyle = UITableViewCellSelectionStyleNone; } (9)如何设置tableview 每行之间的 分割线 [cpp] view plaincopy self.tableView.separatorStyle=UITableViewCellSeparatorStyleSingleLine; 如果不需要分割线,那么就设置属性为 UITableViewCellSeparatorStyleNone 即可。 (10)如何设置 tableview cell的背景颜色 [cpp] view plaincopy
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { //设置背景颜色 cell.contentView.backgroundColor=[UIColor colorWithRed:0.957 green:0.957 blue:0.957 alpha:1]; } (11) - (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath 这个函数响应,用户点击cell 右边的 箭头(如果有的话) &nbs 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] 下一页
|