美文网首页
获取当前屏幕🉑️的cell

获取当前屏幕🉑️的cell

作者: 大鹏你我他 | 来源:发表于2017-04-18 14:22 被阅读0次

    NSArray *array = [self.tableVeiw visibleCells];//获取正在使用的 cell

    for (UITableViewCell  *cell in array) {

    UIButton *buton = (UIButton *)[cell viewWithTag:101];

    buton.selected = NO;

    }

    UITableViewCell *cell =  [tableView cellForRowAtIndexPath:indexPath];

    UIButton *buton = (UIButton *)[cell viewWithTag:101];

    buton.selected = YES;

    相关文章

      网友评论

          本文标题:获取当前屏幕🉑️的cell

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