欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS中UITableView使用的常见问题总结

程序员文章站 2024-02-13 19:20:16
1、如何设置headerview以及其高度 tableview.tableheaderview = myheaderview let height = h...

1、如何设置headerview以及其高度

tableview.tableheaderview = myheaderview
 
let height = headerview.systemlayoutsizefittingsize(uilayoutfittingcompressedsize).height
var frame = headerview.frame
frame.size.height = height
headerview.frame = frame

2、去掉多余cell的分割线

self.tableview.tablefooterview = [[uiview alloc] initwithframe:cgrectzero];

3、如何设置section数、行数

extension myviewcontroller: uitableviewdatasource {
 
 // section数
 func numberofsections(in: uitableview) -> int {
 }
 
 // row数
 public func tableview(_ tableview: uitableview, numberofrowsinsection section: int) -> int {
 }
 
 // 在section和row下,cell
 public func tableview(_ tableview: uitableview, cellforrowat indexpath: indexpath) -> uitableviewcell {
 }
 
}

4、ios 8+自动计算行高、section高度

tableview.estimatedrowheight = 80
tableview.rowheight = uitableviewautomaticdimension

实际上,sectionheader高度也可以自动算高

tv.estimatedsectionheaderheight = 20
tv.sectionheaderheight = uitableviewautomaticdimension

当然sectionfooter也可以,不再赘述

5、禁用tableview自带的分割线

tv.separatorstyle = .none

6、设置sectionheader和sectionfooter,以及他们的高度

view

extension myviewcontroller: uitableviewdelegate {
 func tableview(_ tableview: uitableview, viewforheaderinsection section: int) -> uiview? {
 
 }
 
 func tableview(_ tableview: uitableview, viewforfooterinsection section: int) -> uiview? {
 
 }
}

高度

extension ttentranceexamreportviewcontroller: uitableviewdelegate {
 func tableview(_ tableview: uitableview, heightforheaderinsection section: int) -> cgfloat {
 }
 
 func tableview(_ tableview: uitableview, heightforfooterinsection section: int) -> cgfloat {
 }
}

7、点击cell有阴影,抬起时候阴影消失

func tableview(_ tableview: uitableview, didselectrowat indexpath: indexpath) {
 tableview.deselectrow(at: indexpath, animated: no)
 // other code
}

8、ipad的uitableviewcell自动缩进的问题

if (is_ipad && [_tableview respondstoselector:@selector(setcelllayoutmarginsfollowreadablewidth:)]) {
 _tableview.celllayoutmarginsfollowreadablewidth = no;
}

swift版:

if is_ipad, #available(ios 9.0, *) {
 tableview.celllayoutmarginsfollowreadablewidth = false
}

9、设定uitableviewcell按下的点击效果

cell.selectedbackgroundview = [[purecolorview alloc] initwithcolor:[uicolor redcolor]];

purecolorview是将颜色转化为纯色view的类,网上可以搜到

10、sectionheader不吸顶

let tv = uitableview(frame: cgrect.zero, style: .grouped)

11、使用.groupted后,tableview底部有20px多余空白

tv.tablefooterview = uiview(frame: cgrect(x: 0, y: 0, width: 1, height: cgfloat.leastnormalmagnitude))

12、ios 8系统上,点击cell push一个vc,再pop回来,部分cell高度会乱掉

需要强制实现下估算高度

func tableview(_ tableview: uitableview, estimatedheightforrowat indexpath: indexpath) -> cgfloat {
 return self.tableview(tableview, heightforrowat: indexpath)
}

总结

以上就是这篇文章的全部内容了,希望本文的内容对各位ios开发者们能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。