美文网首页
UITableViewcell过段时间取消选中状态

UITableViewcell过段时间取消选中状态

作者: 路这么长 | 来源:发表于2016-11-18 15:38 被阅读11次
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
      ........
//消除cell选择痕迹

  [self performSelector:@selector(deselect) withObject:nil afterDelay:0.5f];

  }

- (void)deselect {

  [self.tableview deselectRowAtIndexPath:[self.tableview indexPathForSelectedRow] animated:YES];
  
}

相关文章

网友评论

      本文标题:UITableViewcell过段时间取消选中状态

      本文链接:https://www.haomeiwen.com/subject/rxfspttx.html