美文网首页
2018-06-04 iOS 去掉MJRfresh"上

2018-06-04 iOS 去掉MJRfresh"上

作者: dongzhensong | 来源:发表于2018-06-04 12:04 被阅读15次

上拉加载提示语如"上拉加载"
1.使用MJRefreshBackNormalFooter类
以collectionView为例, tableView用法相同.

    self.collectionView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
        // 上拉加载需要做的操作
        // ...
    }];

2.修改MJRefresh的常量值
例如当前使用的是MJRefreshAutoNormalFooter

    self.collectionView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
        // 上拉加载需要做的操作
        // ...
    }];

可全局搜索MJRefreshAutoFooterIdleText, 修改常量MJRefreshAutoFooterIdleText为空:


image.png

相关文章

网友评论

      本文标题:2018-06-04 iOS 去掉MJRfresh"上

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