美文网首页
iOS隐藏cell

iOS隐藏cell

作者: 路边的风景呢 | 来源:发表于2018-05-23 10:48 被阅读30次

    首先在显示cell的上面这样

     if ([LNYroleId integerValue]!=1) {

            if(indexPath.row==0) {

                cell.hidden=YES;

                [cellremoveFromSuperview];

            }

        }

    然后

    - (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath {

        if([LNYroleIdintegerValue]!=1) {

            if(indexPath.row==0) {

               return0;

            }

        }

        return 50;

    }

    就OK了

    相关文章

      网友评论

          本文标题:iOS隐藏cell

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