CrabMen / CMPageTitleView

✍️一分钟集成类似抖音,新浪微博,腾讯视频,网易新闻,今日头条等常见的标题栏样式,api灵活易扩展,支持Cocoapods和Masonry布局,支持ChildController的完整生命周期

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMPageContentCell实现有bug

chenkaijie4ever opened this issue · comments

CMPageContentCell调用setCm_contentView方法时,需要先把上一个_cm_contentView移除,如下:

  • (void)setCm_contentView:(UIView *)cm_contentView {

    if (_cm_contentView.superview) {
    [_cm_contentView removeFromSuperview];
    }

    ...
    }

考虑到Cell是复用的,如果cm_contentView对应的ViewController没有dealloc的话,就会出现内容的重叠