如何解决使用自定义 UITableViewCell 与 UITableViewHeaderFooterView 之间有区别吗?
我对 iOS swift 比较陌生,但是这样做有什么区别
class MyCustomHeaderSection: UITableViewheaderfooterView
{
...
}
myTableView.register(MyCustomHeaderSection.self,forheaderfooterViewReuseIdentifier: "section_header")
还有以下方法
class MyCustomHeaderSection: UITableViewCell
{
...
}
myTableView.register(MyCustomHeaderSection.self,forCellReuseIdentifier: "section_header")
解决方法
在 UI 方面没有区别,两者都可用作页眉/页脚,但 MyCustomHeaderSection: UITableViewHeaderFooterView
真正用于页眉/页脚,而 class MyCustomHeaderSection: UITableViewCell
用于表的实际内容单元
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。