UITableView是工程開(kāi)發(fā)中最經(jīng)常使用到的UI控件邀层,但是你真的了解它嘛返敬,這里記錄幾點(diǎn)有用的但你可能并不知道的。
- 當(dāng)我們的數(shù)據(jù)未能顯示滿一屏幕的時(shí)候寥院,UITableView會(huì)顯示多余的橫線劲赠,這個(gè)時(shí)候你如果希望去掉這些橫線,你可以加上這句話秸谢。
self.tableView.tableFooterView = [[UIView alloc]init];
- UITableView的分割線默認(rèn)是開(kāi)頭空15像素點(diǎn)的(好像是15來(lái)著~~)凛澎,產(chǎn)品經(jīng)理有時(shí)候希望能夠定格顯示,那么你可能會(huì)這么做估蹄。
self.tableView.separatorInset = UIEdgeInsetsZero;
但是你很快就會(huì)發(fā)現(xiàn)這么做并沒(méi)有效果塑煎,這是因?yàn)?lt;code>separatorInset</code>這個(gè)屬性在iOS7以后就已經(jīng)失效了,但是我們還是能夠達(dá)到同樣的效果臭蚁,你可以在你的tablevView的代理協(xié)議實(shí)現(xiàn)界面加上下面這段代碼:
/**
* 分割線頂頭
*/
-(void)viewDidLayoutSubviews
{
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
}
if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
[self.tableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];
}
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
[cell setSeparatorInset:UIEdgeInsetsZero];
}
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
}
再次運(yùn)行最铁,好了我們的UITableView終于頂頭顯示分割線了。
- 很多情況下我們的UITableViewCell的高度是動(dòng)態(tài)不確定的垮兑,比如說(shuō)很多聊天的界面都需要我們?nèi)?dòng)態(tài)的計(jì)算cell的高度冷尉,你可能會(huì)在<code>heightForRowAtIndexPath</code>代理協(xié)議方法中返回你計(jì)算好的cell高度,然后在蘋(píng)果推出約束以后系枪,我們其實(shí)有更加方便的方法去實(shí)現(xiàn)相同的效果雀哨。你可以嘗試在你的代碼中加入以下兩行代碼:
self.tableView.estimatedRowHeight = 68.0;
self.tableView.rowHeight = UITableViewAutomaticDimension;
再次運(yùn)行你的程序,其實(shí)你發(fā)現(xiàn)了好像你的cell并沒(méi)有動(dòng)態(tài)的返回高度嗤无,這是因?yàn)樯厦嬲f(shuō)了震束,這兩行代碼必須配合約束來(lái)使用。
我們拖出一個(gè)SB当犯,然后在cell上放上一個(gè)label垢村,講label的<code>numberOfLines</code>屬性設(shè)置為0,然后設(shè)置好label的上下左右約束嚎卫,然后再對(duì)label的內(nèi)容進(jìn)行賦值嘉栓,再次運(yùn)行你的程序宏榕,這個(gè)時(shí)候你的cell就會(huì)動(dòng)態(tài)的顯示高度了,label的高度取決于你的內(nèi)容的多少侵佃,同時(shí)按照你的約束進(jìn)行顯示麻昼。
-你可能寫(xiě)過(guò)這樣下面這樣的代碼
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[tableView deselectRowAtIndexPath:indexPath animated:true];
[tableView beginUpdates];
ROW--;//此操作表示減少數(shù)據(jù)源的個(gè)數(shù)。
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationRight];
[tableView endUpdates];
}
用一個(gè)動(dòng)畫(huà)來(lái)刪除某一個(gè)cell,其中有兩行代碼特別有意思:
[tableView beginUpdates];
[tableView endUpdates];
這倆吧其實(shí)和<code>[tableView reloadData]</code>作用類(lèi)似馋辈,但是這倆貨卻能非常輕松的創(chuàng)造出不錯(cuò)的效果抚芦,比如說(shuō)和我們上一點(diǎn)說(shuō)的用約束來(lái)控制label的行高相結(jié)合的是的時(shí)候,我們先來(lái)看一下效果:
其實(shí)我的代碼很少迈螟,核心代碼只有以下幾行:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[tableView deselectRowAtIndexPath:indexPath animated:true];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
UILabel *label = [cell.contentView viewWithTag:1000];
[tableView beginUpdates];
if (label.numberOfLines == 0) {
label.numberOfLines = 1;
}else{
label.numberOfLines = 0;
}
[tableView endUpdates];
}
我用SB創(chuàng)建了一個(gè)UITableView叉抡,然后在cell上放置了一個(gè)label,初始化label 的<code>numberOfLines</code>然后在界面上設(shè)置tableView
self.tableView.estimatedRowHeight = 68.0;
self.tableView.rowHeight = UITableViewAutomaticDimension;
然后在他的點(diǎn)擊動(dòng)作中改變label的<code>numberOfLines</code>答毫,同時(shí)結(jié)合使用:
[tableView beginUpdates];
[tableView endUpdates];
像上面po出來(lái)的代碼那樣褥民,這個(gè)時(shí)候你如果使用[tableView reloadData]也能夠達(dá)到改變cell高度的效果,但是界面上就不會(huì)有使用[tableView beginUpdates]那么流暢,以此類(lèi)推洗搂,其實(shí)在很多地方都可以用<code>[tableView beginUpdates]</code>來(lái)代替<code>[tableView reloadData]</code>來(lái)達(dá)到更好的效果.
- 你可能會(huì)經(jīng)常忽略UITableView的一些屬性和回調(diào)消返,必須下面這個(gè)方法:
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
CGFloat offSet = tableView.contentOffset.y;
if (offSet<=0) {
return;
}
CGRect oldRect = cell.frame;
CGRect newRect = cell.frame;
newRect.origin.x += 50;
cell.frame = newRect;
[UIView animateWithDuration:0.5 animations:^{
cell.frame = oldRect;
}];
}
如果你這么寫(xiě)會(huì)簡(jiǎn)單的有一個(gè)展示的動(dòng)畫(huà),這個(gè)回調(diào)就是在cell展示到屏幕的時(shí)候發(fā)起的動(dòng)作耘拇。
還有這個(gè)屬性:<code>tableView.visibleCells</code>撵颊,你的產(chǎn)品經(jīng)理可能會(huì)要求你的cell在滾動(dòng)的時(shí)候進(jìn)行一些展示類(lèi)的動(dòng)畫(huà)----滾動(dòng)的時(shí)候進(jìn)行展開(kāi)收起之類(lèi)的,這樣的話你可以這么做:
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
for (UITableViewCell *cell in _tableView.visibleCells) {
/**
* 你可以在這里對(duì)當(dāng)前的cell進(jìn)行一些操作
*
*/
}
}
這個(gè)屬性會(huì)返回即將展示到屏幕上的cell驼鞭,而放在這個(gè)滾動(dòng)的回掉中你就可以對(duì)你的cell進(jìn)行不停的調(diào)整了秦驯,具體能做出什么動(dòng)畫(huà),就靠你的想象能力了挣棕。
- tableView可能會(huì)造成你的Controller過(guò)于龐大译隘,或許你可以使用MVVM類(lèi)似的構(gòu)架來(lái)瘦身你的Controller。洛心。固耘。。词身。厅目。
更多好文:http://www.strongx.cn