我有一个像这样的UIViewControllerRepresentable:
@ObservedObject var viewModel: HomeViewModel
typealias UIViewControllerType = ViewController
func makeUIViewController(context: Context) -> ViewController {
let storyboard = UIStoryboard(name: "ViewController", bundle: Bundle.main)
let viewController = storyboard.instantiateViewController(withIdentifier: "ViewController") as! ViewController
// ...
return viewController
}
func updateUIViewController(_ uiViewController: UIKitInboxDetail, context: Context) {
// ...
}
在我的viewController内部有一个collectionView。
现在,我想检测我的collectionView是否滚动,如果是,请执行一些操作。
所以我已经将此方法添加到我的ViewController中:
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
if let collectionView = scrollView as? UICollectionView {
isFirstCollectionViewScrolled = true
}
}
但是我只能在视图更新时访问此数据,而不能在运行tiem时访问。
我尝试过的另一种方法是协调器,但是我无法执行我想要的操作。有什么建议吗?
回顾:检测到滚动时,我需要在SwiftUI视图中执行一些操作。
更新:
class HomeViewModel: ObservableObject { }
在我的viewController中,我只是实现通常的CollectionView委托。
如果我在方法ScrollViewDidEndDegelerating中打印出一些东西,它将起作用!发生这种情况时,我只是在swiftUI视图中做些事情! (布尔值可能不是最好的方法,因为它先将其设置为true,然后再保持为真)