diff --git a/CHANGELOG.md b/CHANGELOG.md index 811a90b7d..06ffe1459 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. * Provides `Infallible` versions of `combineLatest` without `resultSelector` requirement. * Provides `Infallible` versions of `CombineLatest+Collection` helpers. * Explicitly declare `APPLICATION_EXTENSION_API_ONLY` for CocoaPods +* Conform `RxScrollViewDelegateProxy` to `UIScrollViewAccessibilityDelegate` ## 6.5.0 diff --git a/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift b/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift index 66cffed0b..7df92f102 100644 --- a/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift +++ b/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift @@ -75,7 +75,7 @@ open class RxScrollViewDelegateProxy } } -extension RxScrollViewDelegateProxy: UIScrollViewDelegate { +extension RxScrollViewDelegateProxy: UIScrollViewAccessibilityDelegate { /// For more information take a look at `DelegateProxyType`. public func scrollViewDidScroll(_ scrollView: UIScrollView) { if let subject = _contentOffsetBehaviorSubject {