復(fù)用機(jī)制

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
// 實(shí)現(xiàn)重用機(jī)制的類
@interface ViewReusePool : NSObject

// 從重用池當(dāng)中取出一個(gè)可重用的view
- (UIView *)dequeueReusableView;

// 向重用池當(dāng)中添加一個(gè)視圖
- (void)addUsingView:(UIView *)view;

// 重置方法疏虫,將當(dāng)前使用中的視圖移動(dòng)到可重用隊(duì)列當(dāng)中
- (void)reset;

@end


#import "ViewReusePool.h"

@interface ViewReusePool ()
// 等待使用的隊(duì)列
@property (nonatomic, strong) NSMutableSet *waitUsedQueue;
// 使用中的隊(duì)列
@property (nonatomic, strong) NSMutableSet *usingQueue;
@end

@implementation ViewReusePool

- (id)init{
    self = [super init];
    if (self) {
        _waitUsedQueue = [NSMutableSet set];
        _usingQueue = [NSMutableSet set];
    }
    return self;
}

- (UIView *)dequeueReusableView{
    UIView *view = [_waitUsedQueue anyObject];
    if (view == nil) {
        return nil;
    }
    else{
        // 進(jìn)行隊(duì)列移動(dòng)
        [_waitUsedQueue removeObject:view];
        [_usingQueue addObject:view];
        return view;
    }
}

- (void)addUsingView:(UIView *)view
{
    if (view == nil) {
        return;
    }
    
    // 添加視圖到使用中的隊(duì)列
    [_usingQueue addObject:view];
}

- (void)reset{
    UIView *view = nil;
    while ((view = [_usingQueue anyObject])) {
        // 從使用中隊(duì)列移除
        [_usingQueue removeObject:view];
        // 加入等待使用的隊(duì)列
        [_waitUsedQueue addObject:view];
    }
}

@end


#import <UIKit/UIKit.h>

@protocol IndexedTableViewDataSource <NSObject>

// 獲取一個(gè)tableview的字母索引條數(shù)據(jù)的方法
- (NSArray <NSString *> *)indexTitlesForIndexTableView:(UITableView *)tableView;

@end

@interface IndexedTableView : UITableView
@property (nonatomic, weak) id <IndexedTableViewDataSource> indexedDataSource;
@end



#import "IndexedTableView.h"
#import "ViewReusePool.h"
@interface IndexedTableView ()
{
    UIView *containerView;
    ViewReusePool *reusePool;
}
@end

@implementation IndexedTableView

- (void)reloadData{
    [super reloadData];
    
    // 懶加載
    if (containerView == nil) {
        containerView = [[UIView alloc] initWithFrame:CGRectZero];
        containerView.backgroundColor = [UIColor whiteColor];
        
        //避免索引條隨著table滾動(dòng)
        [self.superview insertSubview:containerView aboveSubview:self];
    }
    
    if (reusePool == nil) {
        reusePool = [[ViewReusePool alloc] init];
    }
    
    // 標(biāo)記所有視圖為可重用狀態(tài)
    [reusePool reset];
    
    // reload字母索引條
    [self reloadIndexedBar];
}

- (void)reloadIndexedBar
{
    // 獲取字母索引條的顯示內(nèi)容
    NSArray <NSString *> *arrayTitles = nil;
    if ([self.indexedDataSource respondsToSelector:@selector(indexTitlesForIndexTableView:)]) {
        arrayTitles = [self.indexedDataSource indexTitlesForIndexTableView:self];
    }
    
    // 判斷字母索引條是否為空
    if (!arrayTitles || arrayTitles.count <= 0) {
        [containerView setHidden:YES];
        return;
    }
    
    NSUInteger count = arrayTitles.count;
    CGFloat buttonWidth = 60;
    CGFloat buttonHeight = self.frame.size.height / count;
    
    for (int i = 0; i < [arrayTitles count]; i++) {
        NSString *title = [arrayTitles objectAtIndex:i];
        
        // 從重用池當(dāng)中取一個(gè)Button出來
        UIButton *button = (UIButton *)[reusePool dequeueReusableView];
        // 如果沒有可重用的Button重新創(chuàng)建一個(gè)
        if (button == nil) {
            button = [[UIButton alloc] initWithFrame:CGRectZero];
            button.backgroundColor = [UIColor whiteColor];
            
            // 注冊button到重用池當(dāng)中
            [reusePool addUsingView:button];
            NSLog(@"新創(chuàng)建一個(gè)Button");
        }
        else{
            NSLog(@"Button 重用了");
        }
        
        // 添加button到父視圖控件
        [containerView addSubview:button];
        [button setTitle:title forState:UIControlStateNormal];
        [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        
        // 設(shè)置button的坐標(biāo)
        [button setFrame:CGRectMake(0, i * buttonHeight, buttonWidth, buttonHeight)];
    }
    
    [containerView setHidden:NO];
    containerView.frame = CGRectMake(self.frame.origin.x + self.frame.size.width - buttonWidth, self.frame.origin.y, buttonWidth, self.frame.size.height);
}


@end

#import "ViewController.h"
#import "IndexedTableView.h"
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate,IndexedTableViewDataSource>
{
    IndexedTableView *tableView;//帶有索引條的tableview
    UIButton *button;
    NSMutableArray *dataSource;
}
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //創(chuàng)建一個(gè)Tableview
    tableView = [[IndexedTableView alloc] initWithFrame:CGRectMake(0, 60, self.view.frame.size.width, self.view.frame.size.height - 60) style:UITableViewStylePlain];
    tableView.delegate = self;
    tableView.dataSource = self;
    
    // 設(shè)置table的索引數(shù)據(jù)源
    tableView.indexedDataSource = self;
    
    [self.view addSubview:tableView];
    
    //創(chuàng)建一個(gè)按鈕
    button = [[UIButton alloc] initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, 40)];
    button.backgroundColor = [UIColor redColor];
    [button setTitle:@"reloadTable" forState:UIControlStateNormal];
    [button addTarget:self action:@selector(doAction:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];
    
    // 數(shù)據(jù)源
    dataSource = [NSMutableArray array];
    for (int i = 0; i < 100; i++) {
        [dataSource addObject:@(i+1)];
    }
    // Do any additional setup after loading the view, typically from a nib.
    
}

#pragma mark IndexedTableViewDataSource

- (NSArray <NSString *> *)indexTitlesForIndexTableView:(UITableView *)tableView{
    
    //奇數(shù)次調(diào)用返回6個(gè)字母硫兰,偶數(shù)次調(diào)用返回11個(gè)
    static BOOL change = NO;
    
    if (change) {
        change = NO;
        return @[@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K"];
    }
    else{
        change = YES;
        return @[@"A",@"B",@"C",@"D",@"E",@"F"];
    }
    
}

#pragma mark UITableViewDataSource

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [dataSource count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"reuseId";
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    //如果重用池當(dāng)中沒有可重用的cell懒叛,那么創(chuàng)建一個(gè)cell
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
    }
    // 文案設(shè)置
    cell.textLabel.text = [[dataSource objectAtIndex:indexPath.row] stringValue];
    
    //返回一個(gè)cell
    return cell;
}

#pragma mark - UITableViewDelegate

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 40;
}

- (void)doAction:(id)sender{
    NSLog(@"reloadData");
    [tableView reloadData];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市藐握,隨后出現(xiàn)的幾起案子浓恳,更是在濱河造成了極大的恐慌撵颊,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件型雳,死亡現(xiàn)場離奇詭異,居然都是意外死亡山害,警方通過查閱死者的電腦和手機(jī)纠俭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來粗恢,“玉大人柑晒,你說我怎么就攤上這事【焐洌” “怎么了匙赞?”我有些...
    開封第一講書人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長妖碉。 經(jīng)常有香客問我涌庭,道長,這世上最難降的妖魔是什么欧宜? 我笑而不...
    開封第一講書人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任坐榆,我火速辦了婚禮,結(jié)果婚禮上冗茸,老公的妹妹穿的比我還像新娘席镀。我一直安慰自己,他們只是感情好夏漱,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開白布豪诲。 她就那樣靜靜地躺著,像睡著了一般挂绰。 火紅的嫁衣襯著肌膚如雪屎篱。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音交播,去河邊找鬼重虑。 笑死,一個(gè)胖子當(dāng)著我的面吹牛秦士,可吹牛的內(nèi)容都是我干的缺厉。 我是一名探鬼主播,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼伍宦,長吁一口氣:“原來是場噩夢啊……” “哼芽死!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起次洼,我...
    開封第一講書人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬榮一對情侶失蹤关贵,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后卖毁,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體揖曾,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年亥啦,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了炭剪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡翔脱,死狀恐怖奴拦,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情届吁,我是刑警寧澤错妖,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站疚沐,受9級(jí)特大地震影響暂氯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜亮蛔,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一痴施、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧究流,春花似錦辣吃、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至灯节,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背炎疆。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來泰國打工卡骂, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人形入。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓全跨,卻偏偏與公主長得像,于是被迫代替她去往敵國和親亿遂。 傳聞我的和親對象是個(gè)殘疾皇子浓若,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345

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