Skip to content

Commit

Permalink
[Fix] #348 - 전체 탭 제스처가 컬렉션뷰 셀 터치를 가로채는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
Naknakk committed Nov 17, 2024
1 parent 52fb727 commit 6fbf2c3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,9 @@ final class NovelDetailViewController: UIViewController {
networkErrorRefreshButtonDidTap: rootView.networkErrorView.refreshButton.rx.tap,
imageNetworkError: imageNetworkError.asObservable(),
deleteReview: deleteReview.asObservable(),
backgroundDidTap: rootView.rx.tapGesture(),
backgroundDidTap: rootView.rx.tapGesture(configuration: { gestureRecognizer, delegate in
gestureRecognizer.cancelsTouchesInView = false
}),
firstDescriptionBackgroundDidTap: rootView.firstReviewDescriptionBackgroundView.rx.tap,
headerDotsButtonDidTap: rootView.headerDropDownButton.rx.tap,
headerDropdownButtonDidTap: headerDropdownButtonDidTap,
Expand Down

0 comments on commit 6fbf2c3

Please sign in to comment.