如何使用 RxDatasources 向 tableView 提供自定义 header/footer
How to provide custom header/footer to a tableView using RxDatasources
我真的无法在文档或其他地方找到它,但是有没有办法使用 RxDatasources 提供从 nib 加载的自定义页眉和页脚?
例如,我正在出列这样的单元格:
let dataSource = RxTableViewSectionedAnimatedDataSource<CommentsSectionModel>(
configureCell: { dataSource, tableView, indexPath, item in
if let cell = tableView.dequeueReusableCell(withIdentifier:
item.cellIdentifier, for: indexPath) as? BaseTableViewCell{
cell.setup(data: item.model)
return cell
}
return UITableViewCell()
})
我没看到 configureCell
(titleForHeaderInSection
除外)让我 dequeue/configure 可重复使用 header/footer(标准 viewForHeaderInSection
和 viewForFooterInSection
委托方法正在提供)。
自定义 Header/Footer 不是 UITableViewDataSource 接口的一部分,因此它不是 RxDataSource 可以提供的东西。
如果需要,您可以按照我关于如何 Convert a Swift Delegate to RxSwift Observables 并为此创建一个 table 视图委托的文章进行操作...它不是库的一部分,因为 table 视图委托不符合推送接口。
extension Reactive where Base: UITableView {
var delegate: UITableViewDelegateProxy {
return UITableViewDelegateProxy.proxy(for: base)
}
var viewForHeaderInSection: Binder<[Int: UIView]> {
Binder(delegate) { del, value in
del.viewForHeaderInSection.accept(value)
}
}
var viewForFooterInSection: Binder<[Int: UIView]> {
Binder(delegate) { del, value in
del.viewForFooterInSection.accept(value)
}
}
}
final class UITableViewDelegateProxy
: DelegateProxy<UITableView, UITableViewDelegate>
, DelegateProxyType
, UITableViewDelegate {
public static func registerKnownImplementations() {
self.register { UITableViewDelegateProxy(parentObject: [=10=]) }
}
static func currentDelegate(for object: UITableView) -> UITableViewDelegate? {
object.delegate
}
static func setCurrentDelegate(_ delegate: UITableViewDelegate?, to object: UITableView) {
object.delegate = delegate
}
init(parentObject: UITableView) {
super.init(
parentObject: parentObject,
delegateProxy: UITableViewDelegateProxy.self
)
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
viewForHeaderInSection.value[section]
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
viewForFooterInSection.value[section]
}
fileprivate let viewForHeaderInSection = BehaviorRelay<[Int: UIView]>(value: [:])
fileprivate let viewForFooterInSection = BehaviorRelay<[Int: UIView]>(value: [:])
}
我真的无法在文档或其他地方找到它,但是有没有办法使用 RxDatasources 提供从 nib 加载的自定义页眉和页脚?
例如,我正在出列这样的单元格:
let dataSource = RxTableViewSectionedAnimatedDataSource<CommentsSectionModel>(
configureCell: { dataSource, tableView, indexPath, item in
if let cell = tableView.dequeueReusableCell(withIdentifier:
item.cellIdentifier, for: indexPath) as? BaseTableViewCell{
cell.setup(data: item.model)
return cell
}
return UITableViewCell()
})
我没看到 configureCell
(titleForHeaderInSection
除外)让我 dequeue/configure 可重复使用 header/footer(标准 viewForHeaderInSection
和 viewForFooterInSection
委托方法正在提供)。
自定义 Header/Footer 不是 UITableViewDataSource 接口的一部分,因此它不是 RxDataSource 可以提供的东西。
如果需要,您可以按照我关于如何 Convert a Swift Delegate to RxSwift Observables 并为此创建一个 table 视图委托的文章进行操作...它不是库的一部分,因为 table 视图委托不符合推送接口。
extension Reactive where Base: UITableView {
var delegate: UITableViewDelegateProxy {
return UITableViewDelegateProxy.proxy(for: base)
}
var viewForHeaderInSection: Binder<[Int: UIView]> {
Binder(delegate) { del, value in
del.viewForHeaderInSection.accept(value)
}
}
var viewForFooterInSection: Binder<[Int: UIView]> {
Binder(delegate) { del, value in
del.viewForFooterInSection.accept(value)
}
}
}
final class UITableViewDelegateProxy
: DelegateProxy<UITableView, UITableViewDelegate>
, DelegateProxyType
, UITableViewDelegate {
public static func registerKnownImplementations() {
self.register { UITableViewDelegateProxy(parentObject: [=10=]) }
}
static func currentDelegate(for object: UITableView) -> UITableViewDelegate? {
object.delegate
}
static func setCurrentDelegate(_ delegate: UITableViewDelegate?, to object: UITableView) {
object.delegate = delegate
}
init(parentObject: UITableView) {
super.init(
parentObject: parentObject,
delegateProxy: UITableViewDelegateProxy.self
)
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
viewForHeaderInSection.value[section]
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
viewForFooterInSection.value[section]
}
fileprivate let viewForHeaderInSection = BehaviorRelay<[Int: UIView]>(value: [:])
fileprivate let viewForFooterInSection = BehaviorRelay<[Int: UIView]>(value: [:])
}