美文网首页
去掉UITableViewCell的分割线

去掉UITableViewCell的分割线

作者: xiaowu0125 | 来源:发表于2020-04-10 11:57 被阅读0次

    重写addSubview: 方法,找到系统的分割线,覆盖它。

    -(void)addSubview:(UIView*)view {

        if (![view isKindOfClass:[NSClassFromString(@"_UITableViewCellSeparatorView") class]] && view)

            [superaddSubview:view];

    }

    在自定义的UITableViewCell中,添加上述代码。

    相关文章

      网友评论

          本文标题:去掉UITableViewCell的分割线

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