RunLoop方式優(yōu)化加載tableview

這里只寫主要代碼,思路很簡單衔掸,看一下基本就明白了,RunLoop這東西平常不特意用它的話疲迂,用的地方很少若未。閑話不說朱嘴,上代碼。

#import "ViewController.h"

//定義一個block
typedef BOOL(^RunloopBlock)(void);

static NSString *IDENTIFIER = @"IDENTIFIER";

static CGFloat CELL_HEIGHT = 105.f;

@interface ViewController ()<UITableViewDataSource, UITableViewDelegate>
/** 存放任務的數(shù)組  */
@property(nonatomic,strong)NSMutableArray * tasks;
/** 任務標記  */
@property(nonatomic,strong)NSMutableArray * tasksKeys;
/** 最大任務數(shù) */
@property(assign,nonatomic)NSUInteger max;


/** timer  */
@property(nonatomic,strong)NSTimer * timer;

@property (nonatomic, strong) UITableView *exampleTableView;

@end

@implementation ViewController
-(void)_timerFiredMethod{
    
}
- (void)viewDidLoad {
    [super viewDidLoad];
    _max = 18;
    _tasks = [NSMutableArray array];
    _tasksKeys = [NSMutableArray array];
    
    
    _timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(_timerFiredMethod) userInfo:nil repeats:YES];
    
    //注冊Cell
    [self.exampleTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:IDENTIFIER];
    
    //注冊監(jiān)聽
    [self addRunloopObserver];
    
}

//MARK: 內部實現(xiàn)方法
//加載第一張
+(void)addImage1With:(UITableViewCell *)cell{
    //第一張
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(5, 20, 85, 85)];
    imageView.tag = 1;
    NSString *path1 = [[NSBundle mainBundle] pathForResource:@"spaceship" ofType:@"png"];
    UIImage *image = [UIImage imageWithContentsOfFile:path1];
    imageView.contentMode = UIViewContentModeScaleAspectFit;
    imageView.image = image;
    [UIView transitionWithView:cell.contentView duration:0.3 options:(UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionTransitionCrossDissolve) animations:^{
        [cell.contentView addSubview:imageView];
    } completion:nil];
}
//加載第二張
+(void)addImage2With:(UITableViewCell *)cell{
    //第二張
    UIImageView *imageView1 = [[UIImageView alloc] initWithFrame:CGRectMake(105, 20, 85, 85)];
    imageView1.tag = 2;
    NSString *path1 = [[NSBundle mainBundle] pathForResource:@"spaceship" ofType:@"png"];
    UIImage *image1 = [UIImage imageWithContentsOfFile:path1];
    imageView1.contentMode = UIViewContentModeScaleAspectFit;
    imageView1.image = image1;
    [UIView transitionWithView:cell.contentView duration:0.3 options:(UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionTransitionCrossDissolve) animations:^{
        [cell.contentView addSubview:imageView1];
    } completion:nil];
}
//加載第三張
+(void)addImage3With:(UITableViewCell *)cell{
    //第三張
    UIImageView *imageView2 = [[UIImageView alloc] initWithFrame:CGRectMake(200, 20, 85, 85)];
    imageView2.tag = 3;
    NSString *path1 = [[NSBundle mainBundle] pathForResource:@"spaceship" ofType:@"png"];
    UIImage *image2 = [UIImage imageWithContentsOfFile:path1];
    imageView2.contentMode = UIViewContentModeScaleAspectFit;
    imageView2.image = image2;
    [UIView transitionWithView:cell.contentView duration:0.3 options:(UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionTransitionCrossDissolve) animations:^{
        [cell.contentView addSubview:imageView2];
    } completion:nil];
}

//MARK:  UI初始化方法
//設置tableview大小
- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    self.exampleTableView.frame = self.view.bounds;
}

//Cell 高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return CELL_HEIGHT;
}

//加載tableview
- (void)loadView {
    self.view = [UIView new];
    self.exampleTableView = [UITableView new];
    self.exampleTableView.delegate = self;
    self.exampleTableView.dataSource = self;
    [self.view addSubview:self.exampleTableView];
}

#pragma mark - <tableview>
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 399;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:IDENTIFIER];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    
    //干掉contentView上面的子控件!! 節(jié)約內存!!
    for (NSInteger i = 1; i <= 3; i++) {
        //干掉contentView 上面的所有子控件!!
        [[cell.contentView viewWithTag:i] removeFromSuperview];
    }
    //不要直接加載圖片!! 你將加載圖片的代碼!都給RunLoop!!
    [self addTask:^BOOL{
        [ViewController addImage1With:cell];
        return YES;
    } withKey:indexPath];
    [self addTask:^BOOL{
        [ViewController addImage2With:cell];
        return YES;
    } withKey:indexPath];
    [self addTask:^BOOL{
        [ViewController addImage3With:cell];
        return YES;
    } withKey:indexPath];
    
    

    return cell;
}




#pragma mark - <RunLoop>

//MARK: 添加任務
-(void)addTask:(RunloopBlock)unit withKey:(id)key{
    [self.tasks addObject:unit];
    [self.tasksKeys addObject:key];
    //保證之前沒有顯示出來的任務,不再浪費時間加載
    if (self.tasks.count > self.max) {
        [self.tasks removeObjectAtIndex:0];
        [self.tasksKeys removeObjectAtIndex:0];
    }
    
}



//MARK: 回調函數(shù)
//定義一個回調函數(shù)  一次RunLoop來一次
static void Callback(CFRunLoopObserverRef observer, CFRunLoopActivity activity, void *info){
    ViewController * vc = (__bridge ViewController *)(info);
    if (vc.tasks.count == 0) {
        return;
    }
    BOOL result = NO;
    while (result == NO && vc.tasks.count) {
        //取出任務
        RunloopBlock unit = vc.tasks.firstObject;
        //執(zhí)行任務
        result = unit();
        //干掉第一個任務
        [vc.tasks removeObjectAtIndex:0];
        //干掉標示
        [vc.tasksKeys removeObjectAtIndex:0];
    }
    
}

//這里面都是C語言 -- 添加一個監(jiān)聽者
-(void)addRunloopObserver{
    //獲取當前的RunLoop
    CFRunLoopRef runloop = CFRunLoopGetCurrent();
    //定義一個centext
    CFRunLoopObserverContext context = {
        0,
        ( __bridge void *)(self),
        &CFRetain,
        &CFRelease,
        NULL
    };
    //定義一個觀察者
    static CFRunLoopObserverRef defaultModeObsever;
    //創(chuàng)建觀察者
    defaultModeObsever = CFRunLoopObserverCreate(NULL,
                                                 kCFRunLoopBeforeWaiting,
                                                 YES,
                                                 NSIntegerMax - 999,
                                                 &Callback,
                                                 &context
                                                 );
    
    //添加當前RunLoop的觀察者
    CFRunLoopAddObserver(runloop, defaultModeObsever, kCFRunLoopDefaultMode);
    //c語言有creat 就需要release
    CFRelease(defaultModeObsever);
   
}


@end

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末粗合,一起剝皮案震驚了整個濱河市萍嬉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌隙疚,老刑警劉巖壤追,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異供屉,居然都是意外死亡行冰,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門伶丐,熙熙樓的掌柜王于貴愁眉苦臉地迎上來悼做,“玉大人,你說我怎么就攤上這事哗魂「刈撸” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵录别,是天一觀的道長羹与。 經常有香客問我,道長庶灿,這世上最難降的妖魔是什么纵搁? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮往踢,結果婚禮上腾誉,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好利职,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布趣效。 她就那樣靜靜地躺著,像睡著了一般猪贪。 火紅的嫁衣襯著肌膚如雪跷敬。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天热押,我揣著相機與錄音西傀,去河邊找鬼。 笑死桶癣,一個胖子當著我的面吹牛拥褂,可吹牛的內容都是我干的。 我是一名探鬼主播牙寞,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼饺鹃,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了间雀?” 一聲冷哼從身側響起悔详,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎惹挟,沒想到半個月后伟端,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡匪煌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年责蝠,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片萎庭。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡霜医,死狀恐怖,靈堂內的尸體忽然破棺而出驳规,到底是詐尸還是另有隱情肴敛,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布吗购,位于F島的核電站医男,受9級特大地震影響,放射性物質發(fā)生泄漏捻勉。R本人自食惡果不足惜镀梭,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望踱启。 院中可真熱鬧报账,春花似錦研底、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至羽圃,卻和暖如春乾胶,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背朽寞。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工识窿, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人愁憔。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓腕扶,卻偏偏與公主長得像孽拷,于是被迫代替她去往敵國和親吨掌。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內容