簡單封裝tableview把代理換成Block

直接上代碼了

LeBaseTabView.h里面


```#import@interface LeBaseTabView : UITableView/**```

row

*/

@property (nonatomic,copy)? NSInteger (^RowAtIndexPathBlock)(UITableView *tableView,NSInteger section);

//- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath

/**

section

*/

@property (nonatomic,copy) NSInteger (^numberOfSectionsInTableViewBlock)(UITableView *tableView);

/**

返回UItabLeviewcell

*/

@property (nonatomic,copy) UITableViewCell * (^cellForRowAtIndexPathBlock)(UITableView *tableView,NSIndexPath *indexPath);

/**

heightForHeaderInSection

*/

@property (nonatomic,copy) CGFloat (^heightForHeaderInSectionBlock)(UITableView *tableView,NSInteger section);

/**

heightForFooterInSection

*/

@property (nonatomic,copy) CGFloat (^heightForFooterInSectionBlock)(UITableView *tableView,NSInteger section);

/**

didSelectRowAtIndexPath

*/

@property (nonatomic,copy) void (^didSelectRowAtIndexPathBlock)(UITableView *tableView,NSIndexPath * indexPath);

/**

viewForFooterInSection

*/

@property (nonatomic,copy) UIView * (^viewForFooterInSectionBlcok)(UITableView *tableView,NSInteger? section);

/**

viewForHeaderInSection

*/

@property (nonatomic,copy) UIView* (^viewForHeaderInSectionBlock)(UITableView *tableView,NSInteger section);

@end

LeBaseTabView.m里面實現(xiàn)

#import "LeBaseTabView.h"

@implementation LeBaseTabView

/*

// Only override drawRect: if you perform custom drawing.

// An empty implementation adversely affects performance during animation.

- (void)drawRect:(CGRect)rect {

// Drawing code

}

*/

- (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style{

if (self = [super initWithFrame:frame style:style]) {

self.delegate = self;

self.dataSource = self;

self.estimatedRowHeight = 200;

self.rowHeight = UITableViewAutomaticDimension;

self.separatorStyle = UITableViewCellSeparatorStyleNone;

}

return self;

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

if (self.RowAtIndexPathBlock) {

return self.RowAtIndexPathBlock(tableView,section);

}else{

return 0;

}

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

if (self.numberOfSectionsInTableViewBlock) {

return self.numberOfSectionsInTableViewBlock(tableView);

}else{

return 1;

}

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

return self.cellForRowAtIndexPathBlock(tableView,indexPath);

}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

if (self.heightForHeaderInSectionBlock) {

return self.heightForHeaderInSectionBlock(tableView,section);

}else{

return 0.01f;

}

}

- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

if (self.viewForFooterInSectionBlcok) {

return? self.viewForFooterInSectionBlcok(tableView,section);

}else{

return? (UIView*)[UIView new];

}

}

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

if (self.heightForFooterInSectionBlock) {

return self.heightForFooterInSectionBlock(tableView,section);

}else{

return 0.01f;

}

}

- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

if (self.viewForHeaderInSectionBlock) {

return? self.viewForHeaderInSectionBlock(tableView,section);

}else{

return? (UIView*)[UIView new];

}

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

if (self.didSelectRowAtIndexPathBlock) {

self.didSelectRowAtIndexPathBlock(tableView,indexPath);

}

}

@end

在controller里面調(diào)用


#import "LeBaseTabView.h"

@property (nonatomic,strong)LeBaseTabView *trackTableView;

懶加載創(chuàng)建

- (LeBaseTabView *)trackTableView{

if (!_trackTableView) {

_trackTableView = [[LeBaseTabView alloc] initWithFrame:self.scrollView.bounds style:UITableViewStyleGrouped];

_trackTableView.backgroundColor = [UIColor clearColor];

[_trackTableView registerClass:[trackTableViewCell class] forCellReuseIdentifier:@"trackTableViewCell"];

[_trackTableView addHeaderWithTarget:self action:@selector(trackHeaderRefreshing)];

[self.scrollView addSubview:_trackTableView];

}return _trackTableView;

}

實現(xiàn)回調(diào):

-(void)createUI{

__weak typeof(self)weakSelf = self;

self.trackTableView.cellForRowAtIndexPathBlock = ^UITableViewCell *(UITableView *tableView,NSIndexPath *indexPath) {

if (indexPath.section == 0) {

trackTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"trackTableViewCell" forIndexPath:indexPath];

if ([weakSelf.userTrajectoryArr count]>indexPath.row) {

BXPasterList *model = weakSelf.userTrajectoryArr[indexPath.row];

cell.model = model;

}

return cell;

}else{

trackTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"trackTableViewCell" forIndexPath:indexPath];

if ([weakSelf.userTrajectoryArr count]>indexPath.row) {

BXPasterList *model = weakSelf.userFriendShareArr[indexPath.row];

cell.model = model;

}

return cell;

}

};

self.trackTableView.numberOfSectionsInTableViewBlock = ^NSInteger(UITableView *tableView) {

if ([self.userFriendShareArr count]>0) {

return 2;

}

return 1;

};

self.trackTableView.RowAtIndexPathBlock = ^NSInteger(UITableView *tableView, NSInteger section) {

if (section == 0) {

return [weakSelf.userTrajectoryArr count];

}else{

return [weakSelf.userFriendShareArr count];

}

};

self.trackTableView.heightForHeaderInSectionBlock = ^CGFloat (UITableView *tableView,NSInteger section){

if(section == 1&&[self.userFriendShareArr count]) {

return 36.f;

}else{

return 0.01;

}

};

self.trackTableView.viewForHeaderInSectionBlock = ^UIView *(UITableView *tableView,NSInteger section){

if (section==1&&[self.userFriendShareArr count]) {

UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, KSCREENWIDTH, 36)];

view.backgroundColor = COLOR(250, 250, 250);

UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(15, 19, KSCREENWIDTH-30, 12)];

label.text = @"來自好友的分享";

label.font = FONT(12);

label.textColor = COLOR(100, 100, 100);

label.textAlignment = NSTextAlignmentLeft;

[view addSubview:label];

return view;

}else{

return nil;

}

};

self.trackTableView.didSelectRowAtIndexPathBlock = ^(UITableView *tableView, NSIndexPath *indexPath) {

}


后期加上下拉上拉 奉上demo ?

最后編輯于
?著作權(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é)果婚禮上癞己,老公的妹妹穿的比我還像新娘。我一直安慰自己梭伐,他們只是感情好痹雅,可當(dāng)我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著糊识,像睡著了一般绩社。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上赂苗,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天愉耙,我揣著相機與錄音,去河邊找鬼拌滋。 笑死朴沿,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播赌渣,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼魏铅,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了坚芜?” 一聲冷哼從身側(cè)響起沦零,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎货岭,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體疾渴,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡千贯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了搞坝。 大學(xué)時的朋友給我發(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
  • 正文 我出身青樓镣隶,卻偏偏與公主長得像极谊,于是被迫代替她去往敵國和親诡右。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,452評論 2 348

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