Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UICollctionView did not work as expected. When I use colltionView to listen to both didScollPublish and didSelectedItemPublisher #77

Open
SumiaFish opened this issue Aug 26, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@SumiaFish
Copy link

UICollctionView did not work as expected. When I use colltionView to listen to both didScollPublish and didSelectedItemPublisher, they will not work at the same time and the first declaration will not work.

Simple case is as follows:

// NotWork
collectionView.didScrollPublisher.sink { [weak self] _ in
OMPrint("didScroll NotWork!" )
}
.store(in: &cancellables)

// Work
collectionView. DidSelectItemPublisher. Sink {indexPath in
OMPrint("didSelectItem Work!" )
}
.store(in: &cancellables)

@SumiaFish SumiaFish added the bug Something isn't working label Aug 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant