gpt4 book ai didi

ios - RxSwift - 映射 UITableView 的 contentOffset

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:42 26 4
gpt4 key购买 nike

UITableView 滚动时,我试图将一些逻辑应用于组件,但我无法映射 contentOffset 属性以返回 y 的值。

我正在这样测试,但没有任何反应:

table.rx.contentOffset.map {debugPrint($0)}

我该怎么做?

最佳答案

map 本身不会做任何事情。您需要订阅流:

table.rx.contentOffset.subscribe {
print("offset now \($0.element)")
}.disposed(by: disposeBag)

关于ios - RxSwift - 映射 UITableView 的 contentOffset,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48320878/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com