美文网首页iOS Developer
MJRefresh的基本使用

MJRefresh的基本使用

作者: 芝麻绿豆 | 来源:发表于2016-01-22 16:49 被阅读2114次

该框架的作者已经在GitHub上讲解了框架的基本使用方法https://github.com/CoderMJLee/MJRefresh

本文主要利用该框架完成项目需求

需求一:显示的刷新时间格式

默认的时间格式:


默认时间格式

项目需求的时间格式:


需要的时间格式
需改时间显示格式,我选择继承MJRefresh的相关父类,重新父类方法:
- (void)setLastUpdatedTimeKey:(NSString *)lastUpdatedTimeKey;

重新设置显示上次刷新的格式:

- (void)setLastUpdatedTimeKey:(NSString *)lastUpdatedTimeKey{
    
    [super setLastUpdatedTimeKey:lastUpdatedTimeKey];
    NSDate *lastTime = self.lastUpdatedTime;
    NSDateFormatter *fmt = [[NSDateFormatter alloc] init];
    NSInteger hour = [[NSCalendar calender] component:NSCalendarUnitHour fromDate:lastTime];
    if (hour >12) {
        fmt.dateFormat = @"yyyy-MM-dd HH:mm:ss 下午";
    }else{
    
        fmt.dateFormat = @"yyyy-MM-dd HH:mm:ss 上午";
    }
    NSString *timeStr = [fmt stringFromDate:lastTime];
    self.lastUpdatedTimeLabel.text = timeStr;
    
}

需求二:刷新箭头的位置

默认位置:


默认

需求位置:


需求
修改系统方法:
- (void)placeSubviews;

随之又遇到一个问题:arrowView为readonly



只能使用运行时(KVO)修改属性的X值了

- (void)placeSubviews{
    [super placeSubviews];
    self.arrowView.ly_x -= 50;
    [self setValue:@(self.arrowView.ly_x) forKeyPath:@"_loadingView.ly_x"];
}

需求三:底部刷新按钮

默认显示:


默认

需求显示是一个按钮,前100条自动刷新,100条之后需要用户自己点击按钮刷新:


需求

在系统原来底部覆盖一个按钮:
- (void)placeSubviews{

    [super placeSubviews];
    UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(5, 5, LGScreenW - 10, 50)];
    [btn setBackgroundImage:[UIImage imageNamed:@"iPhone_TableView_LoadMore_normal"] forState:UIControlStateNormal];
    [btn setBackgroundImage:[UIImage imageNamed:@"iPhone_TableView_LoadMore_active"] forState:UIControlStateHighlighted];
    [btn setTitle:@"加载中..." forState:UIControlStateNormal];
    [btn setTitleColor:[UIColor grayColor] forState:UIControlStateNormal];
    [btn addTarget:self action:@selector(stateLabelClick) forControlEvents:UIControlEventTouchUpInside];
    self.btn = btn;
    [self addSubview:btn];
}

系统的stateLabelClick执行加载更多的操作;


系统方法

命苦的是这个方法是私有方法;本人只能使用一些不正规渠道访问私有方法了;
--添加了MJRefreshAutoNormalFooter的类扩展;
--然后在类扩展里面声明一下stateLabelClick
这样我们就可以访问这个方法了。哈哈哈哈。。。。。。。。。。。。。。
根据刷新状态显示按钮文字:

- (void)setState:(MJRefreshState)state{

    if (state == MJRefreshStateIdle || state == MJRefreshStateNoMoreData) {
        [self.btn setTitle:@"点击加载下20条" forState:UIControlStateNormal];
    }else if (state == MJRefreshStateRefreshing || state == MJRefreshStatePulling){
        [self.btn setTitle:@"加载中..." forState:UIControlStateNormal];
    }
    [super setState:state];
}

前一百条数据可以设置属性automaticallyRefresh为YES;之后的设置为NO;当然没那么简单了,当你手动拖动到一定程度时,还是会自动执行加载数据的方法

- (void)scrollViewPanStateDidChange:(NSDictionary *)change;

重写该方法,让automaticallyRefresh为yes是时候执行,反之不执行

- (void)scrollViewPanStateDidChange:(NSDictionary *)change{
    
    if (!self.automaticallyRefresh ) return;
    [super scrollViewPanStateDidChange:change];
}

今天就先到这喽!!!!!!欢迎纠错!!!!!!!!

相关文章

网友评论

    本文标题:MJRefresh的基本使用

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