《轉(zhuǎn)》IOS UITableView的代理方法詳解

(轉(zhuǎn)自https://my.oschina.net/u/2473136/blog/525912 僅供個人查閱資料用)
IOS UITableView的代理方法詳解

一、補充
在上一篇博客中,http://my.oschina.net/u/2340880/blog/404605,我將IOS中tableView(表視圖)的一些常用方法總結了一下什往,這篇將tableView的代理方法作了總結,對上一篇博客進行了補充丈冬。

二傲武、UITableViewDataSourc(數(shù)據(jù)源代理)

1、必須實現(xiàn)的回調(diào)方法
返回每個分區(qū)的行數(shù)

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

返回每一行的cell

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

2曹宴、可選實現(xiàn)的方法
返回分區(qū)數(shù)(默認為1)

  • (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
    返回每個分區(qū)頭部的標題

  • (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
    返回每個分區(qū)的尾部標題

  • (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
    設置某行是否可編輯

  • (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;
    設置某行是否可以被移動

  • (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;
    設置索引欄標題數(shù)組(實現(xiàn)這個方法搂橙,會在tableView右邊顯示每個分區(qū)的索引)

  • (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView;
    設置索引欄標題對應的分區(qū)

  • (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index

tableView接受編輯時調(diào)用的方法

  • (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;
    這個方法中的editingStyle參數(shù)是一個枚舉,代表了cell被編輯的模式笛坦,如下:
    ?
    1
    2
    3
    4
    5

typedef
NS_ENUM(NSInteger, UITableViewCellEditingStyle) {

UITableViewCellEditingStyleNone,
//沒有編輯操作

UITableViewCellEditingStyleDelete,
//刪除操作

UITableViewCellEditingStyleInsert
//插入操作

};

tableView的cell被移動時調(diào)用的方法

  • (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath;

三区转、UITableViewDelegate(tableView代理)
cell將要顯示時調(diào)用的方法

  • (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
    頭視圖將要顯示時調(diào)用的方法

  • (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section;
    尾視圖將要顯示時調(diào)用的方法

  • (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section;

和上面的方法對應,這三個方法分別是cell版扩,頭視圖废离,尾視圖已經(jīng)顯示時調(diào)用的方法

  • (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell )cell forRowAtIndexPath:(NSIndexPath)indexPath;
  • (void)tableView:(UITableView *)tableView didEndDisplayingHeaderView:(UIView *)view forSection:(NSInteger)section;
  • (void)tableView:(UITableView *)tableView didEndDisplayingFooterView:(UIView *)view forSection:(NSInteger)section;

設置行高,頭視圖高度和尾視圖高度的方法

  • (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;

  • (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;

  • (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;
    設置行高礁芦,頭視圖高度和尾視圖高度的估計值(對于高度可變的情況下蜻韭,提高效率)

  • (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath;

  • (CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section;

  • (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section;

設置自定義頭視圖和尾視圖

  • (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;

  • (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;
    設置cell是否可以高亮

  • (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath;

cell高亮和取消高亮時分別調(diào)用的函數(shù)

  • (void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath;
  • (void)tableView:(UITableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath;

當即將選中某行和取消選中某行時調(diào)用的函數(shù)悼尾,返回一直位置,執(zhí)行選中或者取消選中

  • (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;
  • (NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath;

已經(jīng)選中和已經(jīng)取消選中后調(diào)用的函數(shù)

  • (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
  • (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;

設置tableView被編輯時的狀態(tài)風格肖方,如果不設置闺魏,默認都是刪除風格

  • (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;

自定義刪除按鈕的標題

  • (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath;

下面這個方法是IOS8中的新方法,用于自定義創(chuàng)建tableView被編輯時右邊的按鈕俯画,按鈕類型為UITableViewRowAction析桥。

  • (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath ;

設置編輯時背景是否縮進

  • (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;

將要編輯和結束編輯時調(diào)用的方法

  • (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;

  • (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath;
    移動特定的某行

  • (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath )sourceIndexPath toProposedIndexPath:(NSIndexPath)proposedDestinationIndexPath;

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市艰垂,隨后出現(xiàn)的幾起案子泡仗,更是在濱河造成了極大的恐慌,老刑警劉巖猜憎,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件沮焕,死亡現(xiàn)場離奇詭異,居然都是意外死亡拉宗,警方通過查閱死者的電腦和手機峦树,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來旦事,“玉大人魁巩,你說我怎么就攤上這事〗愀。” “怎么了谷遂?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長卖鲤。 經(jīng)常有香客問我肾扰,道長,這世上最難降的妖魔是什么蛋逾? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任集晚,我火速辦了婚禮,結果婚禮上区匣,老公的妹妹穿的比我還像新娘偷拔。我一直安慰自己,他們只是感情好亏钩,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布莲绰。 她就那樣靜靜地躺著,像睡著了一般姑丑。 火紅的嫁衣襯著肌膚如雪蛤签。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天栅哀,我揣著相機與錄音震肮,去河邊找鬼称龙。 笑死,一個胖子當著我的面吹牛钙蒙,可吹牛的內(nèi)容都是我干的茵瀑。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼躬厌,長吁一口氣:“原來是場噩夢啊……” “哼马昨!你這毒婦竟也來了?” 一聲冷哼從身側響起扛施,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤鸿捧,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后疙渣,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體匙奴,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年妄荔,在試婚紗的時候發(fā)現(xiàn)自己被綠了泼菌。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡啦租,死狀恐怖哗伯,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情篷角,我是刑警寧澤焊刹,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站恳蹲,受9級特大地震影響虐块,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜嘉蕾,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一贺奠、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧荆针,春花似錦敞嗡、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽棱貌。三九已至玖媚,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間婚脱,已是汗流浹背今魔。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工勺像, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人错森。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓吟宦,卻偏偏與公主長得像,于是被迫代替她去往敵國和親涩维。 傳聞我的和親對象是個殘疾皇子殃姓,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

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