關於iOS tableview自定義區頭

2021-08-03 19:46:28 字數 1572 閱讀 2181

很多人自定義區頭時繼承與uiview,本身沒有問題,但在viewcontroller呼叫時就要下功夫了。其實區頭繼承與uitableviewheaderfooterview才是最實用的。畢竟還要重用滴!

廢話不多,**駕到!

#import

@inte***ce

headfooterview :

uitableviewheaderfooterview

@property

(strong

,nonatomic

)uilabel

*month;

@property

(strong

,nonatomic

)uilabel

*enter;

@property

(strong

,nonatomic

)uilabel

*outlab;

@property

(strong

,nonatomic

)uilabel

*outmoney;

@property

(strong

,nonatomic

)uilabel

*entermoney;

.m實現 -(

instancetype

)initwithreuseidentifier:(

nsstring

*)reuseidentifier

return

self;

}

-(uiview

*)tableview:(

uitableview

*)tableview viewforheaderinsection:(

nsinteger

)section.

如果是區尾,- (

nullable

uiview

*)tableview:(

uitableview

*)tableview viewforfooterinsection:(

nsinteger

)section

��: -(

uiview

*)tableview:(

uitableview

*)tableview viewforheaderinsection:(

nsinteger

)section

headv.

month

.text

=@"9月"

; headv.

enter

.text=@"

轉入";

headv.

outlab

.text=@"

轉出";

headv.

entermoney

.text

=@"+9999";

headv.

outmoney

.text

=@"-999";

return

headv;

}

iOS tableView分割槽 索引

1.建立乙個viewcontroller,new file cocoa touch objective c class class viewcontroller,subclass of uiviewcontroller 2.開啟xib,在view中新增tableview,並將tableview的兩個...

iOS tableView效能優化

什麼時候呼叫 每當有乙個cell進入視野範圍內就會呼叫 uitableviewcell tableview uitableview tableview cellforrowatindexpath nsindexpath indexpath 3.覆蓋資料 cell.textlabel.text nss...

iOS tableView 上下偏移

說一下問題吧,xcode10 向下相容到ios8,ios10以下版本會出現tableview向上或者向下偏移很是煩人。於是山寨了乙個解決方案 該方法適用於向上偏移 void tableview uitableview tableview willdisplaycell uitableviewcell...