时间:2021-05-02
1、如何设置headerView以及其高度
? 1 2 3 4 5 6 tableView.tableHeaderView = myHeaderView let height = headerView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize).height var frame = headerView.frame frame.size.height = height headerView.frame = frame2、去掉多余cell的分割线
? 1 self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];3、如何设置section数、行数
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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高度
? 1 2 tableView.estimatedRowHeight = 80 tableView.rowHeight = UITableViewAutomaticDimension实际上,sectionHeader高度也可以自动算高
? 1 2 tv.estimatedSectionHeaderHeight = 20 tv.sectionHeaderHeight = UITableViewAutomaticDimension当然sectionFooter也可以,不再赘述
5、禁用tableview自带的分割线
? 1 tv.separatorStyle = .none6、设置sectionHeader和sectionFooter,以及他们的高度
view
? 1 2 3 4 5 6 7 8 9 extension MyViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { } func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { } }高度
? 1 2 3 4 5 6 7 extension TTEntranceExamReportViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { } func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { } }7、点击cell有阴影,抬起时候阴影消失
? 1 2 3 4 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { tableView.deselectRow(at: indexPath, animated: no) // other code }8、iPad的UITableViewCell自动缩进的问题
? 1 2 3 if (IS_IPAD && [_tableView respondsToSelector:@selector(setCellLayoutMarginsFollowReadableWidth:)]) { _tableView.cellLayoutMarginsFollowReadableWidth = NO; }Swift版:
? 1 2 3 if IS_IPAD, #available(iOS 9.0, *) { tableView.cellLayoutMarginsFollowReadableWidth = false }9、设定UITableviewCell按下的点击效果
? 1 cell.selectedBackgroundView = [[PureColorView alloc] initWithColor:[UIColor redColor]];PureColorView是将颜色转化为纯色View的类,网上可以搜到
10、sectionHeader不吸顶
? 1 let tv = UITableView(frame: CGRect.zero, style: .grouped)11、使用.groupted后,TableView底部有20px多余空白
? 1 tv.tableFooterView = UIView(frame: CGRect(x: 0, y: 0, width: 1, height: CGFloat.leastNormalMagnitude))12、ios 8系统上,点击cell push一个vc,再pop回来,部分cell高度会乱掉
需要强制实现下估算高度
传送门
? 1 2 3 func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat { return self.tableView(tableView, heightForRowAt: indexPath) }总结
以上就是这篇文章的全部内容了,希望本文的内容对各位iOS开发者们能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
大家在PHPmailer群发Gmail时会遇到许多常见问题,下面为大家总结了一些常见问题,希望对大家的学习有所帮助。1.Couldnotauthenticate
ios8系统升级常见问题有哪些?下文小编就为大家带来升级ios8常见问题汇总,在升级之前,我们需要了解下如何升级比较方便,如果遇到问题该怎么解决,下面就和小
下面介绍LI中内容超过长度后以省略号显示的方法。 具体页面代码:blueideaweb标准常见问题大全web标准常见问题大全web标准常见问题大全
改变UITableView的header、footer背景颜色改变UITableView的header、footer背景颜色,这是个很常见的问题。之前知道的一般
为什么说是常见问题整合呢,因为小编我就是Genymotion模板器最悲剧的使用者,该见过的问题,我基本都见过了,在此总结出这血的教训,望大家不要重蹈覆辙。常见问