diff --git a/Source/DDS/Component/ScrollView/ScrollView.swift b/Source/DDS/Component/ScrollView/ScrollView.swift index ebc5d8f..b3c470a 100644 --- a/Source/DDS/Component/ScrollView/ScrollView.swift +++ b/Source/DDS/Component/ScrollView/ScrollView.swift @@ -57,7 +57,9 @@ public struct DodamScrollView: DodamNavigationViewProtocol { } .onChange(of: yCoordinate) { let scrollOffset = -(($0 - topInset) / (borderSize ?? 0)) - blueOpacity = max(min(scrollOffset, 1), 0) + + // iOS 18부터 blueOpacity를 0으로 설정하면 클릭이 안 되는 버그가 발생하여 0.00001로 설정 + blueOpacity = max(min(scrollOffset, 1), 0.00001) } } )