UITableView中每行數(shù)據(jù)都是一個(gè)UITableViewCell瀑构,在這個(gè)控件中為了顯示更多的信息,iOS已經(jīng)在其內(nèi)部設(shè)置好了多個(gè)子控件以供開發(fā)者使用,如果系統(tǒng)樣式的cell不能滿足程序員需求是我們可以創(chuàng)建一個(gè)子類去自定義.我們查看UITableViewCell的聲明文件可以發(fā)現(xiàn)在內(nèi)部有一個(gè)UIView控件,(contentView惰说,作為其他元素的父控件).
數(shù)據(jù)源:由于iOS是遵循MVC模式設(shè)計(jì)的赶熟,很多操作都是通過(guò)代理和外界溝通的灯萍,但對(duì)于數(shù)據(jù)源控件除了代理還有一個(gè)數(shù)據(jù)源屬性荚守,通過(guò)它和外界進(jìn)行數(shù)據(jù)交互。 對(duì)于UITableView設(shè)置完dataSource后需要實(shí)現(xiàn)UITableViewDataSource協(xié)議蚤告,在這個(gè)協(xié)議中定義了多種 數(shù)據(jù)操作方法. 一般通過(guò)創(chuàng)建一個(gè)模型(懶加載)的方式去加載數(shù)據(jù).
數(shù)據(jù)源方法:
#pragma mark 返回組數(shù)
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 1;(默認(rèn)1)
}
#pragma mark 返回每組行數(shù)
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return group1.contacts.count;
}
#pragma mark返回每行的單元格
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//1.創(chuàng)建cell
//2.設(shè)置數(shù)據(jù)
//3.返回cell
return cell;
}
#pragma mark 返回每組頭標(biāo)題名稱
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
return group.name;
}
#pragma mark 返回每組尾部說(shuō)明
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
return group.detail;
}
代理:
當(dāng)發(fā)現(xiàn)單元格高度努酸、分組標(biāo)題高度以及尾部說(shuō)明的高度都需要調(diào)整,此時(shí)就需要使用代理方法杜恰。UITableView代理方法有很多获诈,例如監(jiān)聽(tīng)單元格顯示周期、監(jiān)聽(tīng)單元格選擇編輯操作心褐、設(shè)置是否高亮顯示單元格舔涎、設(shè)置行高等。
1.設(shè)置行高
#pragma mark - 代理方法
#pragma mark 設(shè)置分組標(biāo)題內(nèi)容高度
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if(section==0){
return 50;
}
return 40;
}
#pragma mark 設(shè)置每行高度(每行高度可以不一樣)
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 45;
}
#pragma mark 設(shè)置尾部說(shuō)明內(nèi)容高度
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return 40;
}
2.監(jiān)聽(tīng)用戶點(diǎn)擊方法:
#pragma mark 點(diǎn)擊行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
_selectedIndexPath=indexPath;
}
#pragma mark 窗口的代理方法逗爹,用戶保存數(shù)據(jù)
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
}
}
#pragma mark 重寫狀態(tài)樣式方法
-(UIStatusBarStyle)preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
UITableViewCell
1.自帶的UITableViewCell
UITableViewCell是構(gòu)建一個(gè)UITableView的基礎(chǔ)亡嫌,在UITableViewCell內(nèi)部有一個(gè)UIView控件作為其他內(nèi)容的容器,它上面有一個(gè)UIImageView和兩個(gè)UILabel掘而,通過(guò)UITableViewCellStyle屬性可以對(duì)其樣式進(jìn)行控制挟冠。
2.自定義UITableViewCell
定義一個(gè)TableViewCell實(shí)現(xiàn)UITableViewCell,一般實(shí)現(xiàn)自定義UITableViewCell需要分為兩步:第一初始化控件袍睡;第二設(shè)置數(shù)據(jù)知染,重新設(shè)置控件frame。原因就是自定義Cell一般無(wú)法固定高度斑胜,很多時(shí)候高度需要隨著內(nèi)容改變控淡。此外由于在單元格內(nèi)部是無(wú)法控制單元格高度的,因此一般會(huì)定義一個(gè)高度屬性用于在UITableView的代理事件中設(shè)置每個(gè)單元格高度止潘。