美文网首页
tableview滑动后DZNEmptyDataSet 消失或者

tableview滑动后DZNEmptyDataSet 消失或者

作者: gleeeli | 来源:发表于2018-11-12 18:38 被阅读29次

更改源码为下面的方法:

  • (void)didMoveToSuperview
    {
    CGRect frame = self.superview.bounds;
    frame.origin.y = 0;
    self.frame = frame;

    void(^fadeInBlock)(void) = ^{_contentView.alpha = 1.0;};

    if (self.fadeInOnDisplay) {
    [UIView animateWithDuration:0.25
    animations:fadeInBlock
    completion:NULL];
    }
    else {
    fadeInBlock();
    }
    }

相关文章

网友评论

      本文标题:tableview滑动后DZNEmptyDataSet 消失或者

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