UITableView的常見屬性

2021-07-09 17:56:51 字數 614 閱讀 4914

// 設定分割線的顏色和樣式

self

.tableview

.separatorcolor = [uicolor colorwithred:255/255.0 green:0 blue:255/255.0 alpha:255/255.0];

self

.tableview

.separatorstyle = uitableviewcellseparatorstylesingleline;

注:colorwithred:green:blue:alpha: 方法的引數需要傳入cgfloat型別,並且傳入的引數是比例,例如255/255.0 (除以255.0可以將int型別轉換為cgfloat型別)

// 設定tableview的頭部和尾部控制項

self

.tableview

.tableheaderview = [uibutton buttonwithtype:uibuttontypecontactadd];

self

.tableview

.tablefooterview = [[uiswitch alloc] init];

UITableView常見屬性彙總

uitableview uitableviewdatasource協議 一共有多少組 nsinteger numberofsectionsintableview uitableview tableview 每組有多少行資料 nsinteger tableview uitableview tablev...

UITableView常見問題總結(二)

廢話不多說,直奔主題.1.如何將cell中的分割線頂頭顯示,具體實現方法如下 self setlayoutmargins uiedgeinsetsmake 0 0,0 0 self setseparatorinset uiedgeinsetsmake 0 0,0 0 cell setlayoutma...

UITableView的詳細講解

1.uitableview的初始化 csharp view plain copy uitableview tableview uitableview alloc initwithframe cgrectmake 0,0,320,420 tableview setdelegate self table...