当前位置: 代码迷 >> 综合 >> iOS tableViewCell 点击后没有任何变化
  详细解决方案

iOS tableViewCell 点击后没有任何变化

热度:16   发布时间:2023-12-22 18:29:46.0
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell =  [tableView dequeueReusableCellWithIdentifier:@"BlackListCell" forIndexPath:indexPath];

   // 选中后没有任何点击效果 适用于展示类条目

    cell.selectionStyle = UITableViewCellSelectionStyleNone;

   //去调无用分割线

    tableView.tableFooterView = [[UIView alloc]init];

    return cell;
}