UITableView是最常用的一個(gè)iOS控件罢缸,現(xiàn)要做一個(gè)如下圖的UITableView篙贸,其中白色部分就是cell,可是默認(rèn)的UITableView中cell之間是沒(méi)有間隔的枫疆,那么辦呢爵川?網(wǎng)上有2種做法,我這里順帶提一下吧
1息楔、方式一
通過(guò)設(shè)置cell的contentView來(lái)間接實(shí)現(xiàn)寝贡,在cell的contentView的頂部或者底部留下一定的間距,這樣就會(huì)有cell間就有間距的效果值依。但是這種方式在cell有點(diǎn)擊效果的時(shí)候圃泡,會(huì)很明顯的看出有分層,因?yàn)檫@時(shí)候cell是被點(diǎn)擊的愿险,contentView都會(huì)有系統(tǒng)點(diǎn)擊的陰影效果颇蜡。這種方式在cell左滑刪除,置頂?shù)炔僮鞯臅r(shí)候辆亏,左滑出的視圖會(huì)高出一部分(左滑顯示出的高度=(cell的高度-留下的間距高度)+ 留下的間距高度)风秤,很顯然這種方式有致命缺陷。
2扮叨、方式二
通過(guò)分組的方式間接的實(shí)現(xiàn)缤弦,每組的Header可以當(dāng)做是cell之間的間距,每組中只有一個(gè)cell甫匹,代碼如下:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{ return 10;}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{ return 10;}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{ return 1;}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{ return 100;}
但是呢甸鸟,這還是會(huì)出現(xiàn)一個(gè)問(wèn)題,因?yàn)橄到y(tǒng)默認(rèn)分組的時(shí)候每組的Header會(huì)停留在tableview的頂部兵迅,這要怎么處理呢抢韭?網(wǎng)上也有一種解決辦法
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView == self.tableView) {
CGFloat sectionHeaderHeight = 10;
if (scrollView.contentOffset.y <= sectionHeaderHeight && scrollView.contentOffset.y >= 0) {
scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
} else if (scrollView.contentOffset.y >= sectionHeaderHeight) {
scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
}
}
}
但是這種方式是通過(guò)scroll偏移量來(lái)監(jiān)聽(tīng)和改變tableview的contentInset。
補(bǔ)充:上面的代碼只能設(shè)置headerView恍箭,如果想footerView也沒(méi)有粘性刻恭,怎么辦?看到國(guó)外一位大神寫(xiě)的如下代碼
-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView == self.tableView)
{
UITableView *tableview = (UITableView *)scrollView;
CGFloat sectionHeaderHeight = 64;
CGFloat sectionFooterHeight = 120;
CGFloat offsetY = tableview.contentOffset.y;
if (offsetY >= 0 && offsetY <= sectionHeaderHeight)
{
tableview.contentInset = UIEdgeInsetsMake(-offsetY, 0, -sectionFooterHeight, 0);
}else if (offsetY >= sectionHeaderHeight && offsetY <= tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight)
{
tableview.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, -sectionFooterHeight, 0);
}else if (offsetY >= tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight && offsetY <= tableview.contentSize.height - tableview.frame.size.height) {
tableview.contentInset = UIEdgeInsetsMake(-offsetY, 0, -(tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight), 0);
}
}
}
優(yōu)雅的方式
其實(shí)優(yōu)雅的也是最簡(jiǎn)單的方法是直接讓UITableView中的cell收縮一點(diǎn)扯夭,這樣UITableView的底色就是分割線的顏色了鳍贾,如上圖就是橘色。這種方式只需要重寫(xiě)cell的setFrame方法即可
-(void)setFrame:(CGRect)frame
{
frame.origin.x = 10;//這里間距為10交洗,可以根據(jù)自己的情況調(diào)整
frame.size.width -= 2 * frame.origin.x;
frame.size.height -= 2 * frame.origin.x;
[super setFrame:frame];
}
如果此時(shí)想要實(shí)現(xiàn)圓角也很簡(jiǎn)單骑科,直接加上
self.layer.masksToBounds = YES;
self.layer.cornerRadius = 8.0;
此時(shí)效果圖:
PS:這種方式不適合有編輯的情況,因?yàn)樵诰庉嫷臅r(shí)候會(huì)不停調(diào)用setFrame方法构拳,導(dǎo)致錯(cuò)亂咆爽,此時(shí)建議使用上面的第二種方案梁棠。感謝簡(jiǎn)友的提醒,之前做的是無(wú)編輯的情況斗埂,有編輯的沒(méi)有測(cè)試符糊。