File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -383,11 +383,11 @@ extension Reactive where Base: UITableView {
383
383
/**
384
384
Reactive wrapper for `delegate` message `tableView:didUpdateFocusInContext:withAnimationCoordinator:`.
385
385
*/
386
- public var didUpdateFocusInContextWithAnimationCoordinator : ControlEvent < ( context: UIFocusUpdateContext , animationCoordinator: UIFocusAnimationCoordinator ) > {
386
+ public var didUpdateFocusInContextWithAnimationCoordinator : ControlEvent < ( context: UITableViewFocusUpdateContext , animationCoordinator: UIFocusAnimationCoordinator ) > {
387
387
388
388
let source = delegate. methodInvoked ( #selector( UITableViewDelegate . tableView ( _: didUpdateFocusIn: with: ) ) )
389
- . map { a -> ( context: UIFocusUpdateContext , animationCoordinator: UIFocusAnimationCoordinator ) in
390
- let context = a [ 1 ] as! UIFocusUpdateContext
389
+ . map { a -> ( context: UITableViewFocusUpdateContext , animationCoordinator: UIFocusAnimationCoordinator ) in
390
+ let context = a [ 1 ] as! UITableViewFocusUpdateContext
391
391
let animationCoordinator = try castOrThrow ( UIFocusAnimationCoordinator . self, a [ 2 ] )
392
392
return ( context: context, animationCoordinator: animationCoordinator)
393
393
}
You can’t perform that action at this time.
0 commit comments