iOS-MJRefresh框架底層實現(xiàn)原理

這兩天研究了一下MJRefresh框架底層實現(xiàn)原理玲昧,下面貼出研究結(jié)果:


#import "ViewController.h"
#import "MJExtension.h"
#import "AFNetworking.h"
#import "UIView+Frame.h"
#import "TopicItem.h"

@interface ViewController ()

//* 請求管理者 
@property (nonatomic, weak) AFHTTPSessionManager *mgr;
/** 全部的帖子數(shù)據(jù) */
@property (nonatomic, strong) NSMutableArray *topics;
/** 用來加載下一頁數(shù)據(jù) */
@property (nonatomic, copy) NSString *maxtime;

/******** 下拉刷新-header ********/
/** 下拉刷新控件 */
@property (nonatomic, weak) UIView *header;
/** 下拉刷新控件里面的文字 */
@property (nonatomic, weak) UILabel *headerLabel;
/** 是否為"松開立即刷新" */
@property(nonatomic, assign, getter=isWillLoadingNewData) BOOL willLoadingNewData;
/** 是否為"正在刷新" */
@property(nonatomic, assign, getter=isLoadingNewData) BOOL loadingNewData;
/******** 下拉刷新-header ********/

/******** 上拉刷新-footer ********/
/** 上拉刷新控件 */
@property (nonatomic, weak) UIView *footer;
/** 上拉刷新控件里面的文字 */
@property (nonatomic, weak) UILabel *footerLabel;
/** 是否正在加載更多數(shù)據(jù) */
@property(nonatomic, assign, getter=isLoadingMoreData) BOOL loadingMoreData;
/******** 上拉刷新-footer ********/

@end

@implementation ViewController

#pragma mark - 懶加載
- (AFHTTPSessionManager *)mgr
{
    if (!_mgr) {
        _mgr = [AFHTTPSessionManager manager];
    }
    return _mgr;
}

#pragma mark - 初始化
- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.tableView.contentInset = UIEdgeInsetsMake(61, 0, 0, 0);
    
    // 集成刷新控件
    [self setUpRefresh];
    
    [self loadNewTopics];
}

/**
 * 集成刷新控件
 */
- (void)setUpRefresh
{
    // 下拉刷新:加載最新的數(shù)據(jù)
    UIView *header = [[UIView alloc] init];
    header.backgroundColor = [UIColor yellowColor];
    header.height = 60;
    header.width = self.tableView.width;
    header.y = - header.height;
    [self.tableView addSubview:header];
    self.header = header;
    
    UILabel *headerLabel = [[UILabel alloc] init];
    headerLabel.text = @"下拉可以刷新";
    headerLabel.width = self.tableView.width;
    headerLabel.height = header.height;
    headerLabel.textAlignment = NSTextAlignmentCenter;
    [header addSubview:headerLabel];
    self.headerLabel = headerLabel;
    
    // 上拉刷新:加載更多的數(shù)據(jù)
    UIView *footer = [[UIView alloc] init];
    footer.backgroundColor = [UIColor orangeColor];
    footer.height = 35;
    footer.hidden = YES;
    self.tableView.tableFooterView = footer;
    self.footer = footer;
    
    UILabel *footerLabel = [[UILabel alloc] init];
    footerLabel.text = @"上拉可以加載更多";
    footerLabel.width = self.tableView.width;
    footerLabel.height = footer.height;
    footerLabel.textAlignment = NSTextAlignmentCenter;
    [footer addSubview:footerLabel];
    self.footerLabel = footerLabel;
}

#pragma mark - 數(shù)據(jù)處理
/**
 * 加載最新的帖子數(shù)據(jù)
 */
- (void)loadNewTopics
{
    // 拼接請求參數(shù)
    NSMutableDictionary *parameters = [NSMutableDictionary dictionary];
    parameters[@"a"] = @"list";
    parameters[@"c"] = @"data";
    parameters[@"type"] = @"1";
    
    // 發(fā)送請求
    [self.mgr GET:@"http://api.budejie.com/api/api_open.php" parameters:parameters success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        // 存儲maxtime
        self.maxtime = responseObject[@"info"][@"maxtime"];
        
        // 字典數(shù)組 -> 模型數(shù)組
        self.topics = [TopicItem mj_objectArrayWithKeyValuesArray:responseObject[@"list"]];
        
        // 刷新表格
        [self.tableView reloadData];
        
        // 結(jié)束刷新
        self.loadingNewData = NO;
        // 恢復頂部的內(nèi)邊距
        [UIView animateWithDuration:0.25 animations:^{
            UIEdgeInsets inset = self.tableView.contentInset;
            inset.top -= self.header.height;
            self.tableView.contentInset = inset;
        }];
        
        // 有數(shù)據(jù)了
        self.footer.hidden = NO;
    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        NSLog(@"請求失敗 - %@", error);
        // 結(jié)束刷新
        self.loadingNewData = NO;
        // 恢復頂部的內(nèi)邊距
        [UIView animateWithDuration:0.25 animations:^{
            UIEdgeInsets inset = self.tableView.contentInset;
            inset.top -= self.header.height;
            self.tableView.contentInset = inset;
        }];
    }];
}

/**
 * 加載更多的帖子數(shù)據(jù)
 */
- (void)loadMoreTopics
{
    // 拼接請求參數(shù)
    NSMutableDictionary *parameters = [NSMutableDictionary dictionary];
    parameters[@"a"] = @"list";
    parameters[@"c"] = @"data";
    parameters[@"type"] = @"1";
    parameters[@"maxtime"] = self.maxtime;
    
    // 發(fā)送請求
    [self.mgr GET:@"http://api.budejie.com/api/api_open.php" parameters:parameters success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        // 存儲maxtime
        self.maxtime = responseObject[@"info"][@"maxtime"];
        
        // 字典數(shù)組 -> 模型數(shù)組
        NSArray *moreTopics = [TopicItem mj_objectArrayWithKeyValuesArray:responseObject[@"list"]];
        [self.topics addObjectsFromArray:moreTopics];
        
        // 刷新表格
        [self.tableView reloadData];
        
        // 結(jié)束刷新
        self.loadingMoreData = NO;
        self.footerLabel.text = @"上拉可以加載更多";
    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        NSLog(@"請求失敗 - %@", error);
        
        // 結(jié)束刷新
        self.loadingMoreData = NO;
        self.footerLabel.text = @"上拉可以加載更多";
    }];
}

#pragma mark - 代理方法
/**
 * 當scrollView在滾動,就會調(diào)用這個代理方法
 */
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    // 處理下拉刷新
    [self dealLoadNewData];
    
    // 處理上拉加載更多
    [self dealLoadMoreData];
}

/**
 * 當用戶手松開(停止拖拽),就會調(diào)用這個代理方法
 */
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
    if (self.willLoadingNewData == NO || self.loadingNewData) return;
    
    // 增加頂部的內(nèi)邊距
    [UIView animateWithDuration:0.25 animations:^{
        UIEdgeInsets inset = self.tableView.contentInset;
        inset.top += self.header.height;
        self.tableView.contentInset = inset;
    }];
    
    // 修改文字
    self.headerLabel.text = @"正在刷新數(shù)據(jù)...";
    
    // 正在刷新
    self.loadingNewData = YES;
    
    // 發(fā)送請求
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        
        [self loadNewTopics];
    });
}

/**
 * 處理下拉刷新
 */
- (void)dealLoadNewData
{
    if (self.loadingNewData) return;
    
    CGFloat offsetY =  - (64 + self.header.height);
    if (self.tableView.contentOffset.y <= offsetY) {
        self.headerLabel.text = @"松開立即刷新";
        self.willLoadingNewData = YES;
    } else {
        self.headerLabel.text = @"下拉可以刷新";
        self.willLoadingNewData = NO;
    }
}

/**
 * 處理上拉加載更多
 */
- (void)dealLoadMoreData
{
    // 如果沒有數(shù)據(jù) 或者 正在上拉刷新, 直接返回
    if (self.topics.count == 0 || self.loadingMoreData) return;
    
    CGFloat offsetY = self.tableView.contentSize.height + self.tableView.contentInset.bottom - self.tableView.height;
    if (self.tableView.contentOffset.y >= offsetY) {
        self.loadingMoreData = YES;
        
        // 更改文字
        self.footerLabel.text = @"正在加載更多的數(shù)據(jù)...";
        
        // 加載更多的帖子數(shù)據(jù)
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [self loadMoreTopics];
        });
    }
}

#pragma mark - 數(shù)據(jù)源
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.topics.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *ID = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
    }
    
    TopicItem *item = self.topics[indexPath.row];
    cell.textLabel.text = item.name;
    cell.detailTextLabel.text = item.text;
    
    return cell;
}
@end
效果
實現(xiàn)原理

在tableView上加上一個View,注意不是headerView长窄,而是一個Y值為負數(shù)的普通View养篓,下拉時候監(jiān)聽偏移量,改變View的內(nèi)容顯示民褂。
在tableView下面加上一個footerView,監(jiān)聽偏移量疯潭,當footerView完全顯示的時候加載更多數(shù)據(jù)赊堪。
基本代碼已貼,有不清楚的可以討論交流竖哩。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末哭廉,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子期丰,更是在濱河造成了極大的恐慌群叶,老刑警劉巖吃挑,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件钝荡,死亡現(xiàn)場離奇詭異,居然都是意外死亡舶衬,警方通過查閱死者的電腦和手機埠通,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來逛犹,“玉大人端辱,你說我怎么就攤上這事∷浠” “怎么了舞蔽?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長码撰。 經(jīng)常有香客問我渗柿,道長,這世上最難降的妖魔是什么脖岛? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任朵栖,我火速辦了婚禮,結(jié)果婚禮上柴梆,老公的妹妹穿的比我還像新娘陨溅。我一直安慰自己,他們只是感情好绍在,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布门扇。 她就那樣靜靜地躺著雹有,像睡著了一般。 火紅的嫁衣襯著肌膚如雪悯嗓。 梳的紋絲不亂的頭發(fā)上件舵,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天,我揣著相機與錄音脯厨,去河邊找鬼铅祸。 笑死,一個胖子當著我的面吹牛合武,可吹牛的內(nèi)容都是我干的临梗。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼稼跳,長吁一口氣:“原來是場噩夢啊……” “哼盟庞!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起汤善,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤什猖,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后红淡,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體不狮,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年在旱,在試婚紗的時候發(fā)現(xiàn)自己被綠了摇零。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡桶蝎,死狀恐怖驻仅,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情登渣,我是刑警寧澤噪服,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站胜茧,受9級特大地震影響粘优,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜竹揍,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一敬飒、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧芬位,春花似錦无拗、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽揽惹。三九已至,卻和暖如春四康,著一層夾襖步出監(jiān)牢的瞬間搪搏,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工闪金, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留疯溺,地道東北人。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓哎垦,卻偏偏與公主長得像囱嫩,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子漏设,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 實現(xiàn)原理在tableView上加上一個View墨闲,注意不是headerView,而是一個Y值為負數(shù)的普通View郑口,下...
    ScaryMonsterLyn閱讀 729評論 0 2
  • 有時候我們需要編寫一些小的代碼片段時鸳碧,在Visual Studio中創(chuàng)建一個工程就顯得有點殺雞用牛刀的感覺了,所有...
    簡約生活_憶沙閱讀 1,722評論 0 0
  • 它本來是只活得很矜持的豬犬性,坐在一個女孩的窗臺上瞻离,拱著手晚上數(shù)著星星白天暖暖地曬肚皮。雖然它什么都不說仔夺,但它就是知道...
    慣犯2閱讀 770評論 0 0
  • 記憶中很長一段時間都沒有休息過這么久的假琐脏,長假還是停留在學生時代的暑假和寒假攒砖,工作了三年突然讓我停下來休息缸兔,...
    遇見未知的自己珍珍閱讀 404評論 2 1
  • 凜冽的北風吹著哨子掠過大地,公路兩旁灰色的楊樹林也瑟瑟發(fā)抖吹艇,夕陽也擔心著涼似的惰蜜,慌慌張張地躲到地平線下去∈苌瘢回到自家...
    刀客181閱讀 357評論 0 0