- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
在这个函数里写上cell.selectionStyle = UITableViewCellSelectionStyleNone;就ok了
时间: 2024-12-24 20:20:10