//个性化点击效果
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[self performSelector:@selector(deselect) withObject:nil afterDelay:0.2f];
}
-(void)deselect{
[self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES];
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[self performSelector:@selector(deselect) withObject:nil afterDelay:0.2f];
}
-(void)deselect{
[self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES];
}
//============系统样式===================
self.selectionStyle
=
UITableViewCellSelectionStyleDefault;
/**
* UITableViewCellSelectionStyleNone,//没有现象
UITableViewCellSelectionStyleBlue, 灰色
UITableViewCellSelectionStyleGray,
UITableViewCellSelectionStyleDefault
*/
/**
* UITableViewCellSelectionStyleNone,//没有现象
UITableViewCellSelectionStyleBlue, 灰色
UITableViewCellSelectionStyleGray,
UITableViewCellSelectionStyleDefault
*/