Swift

iOS | iOS 13 웹뷰 페이지 스크롤 안되는 현상(WebView Scroll error)

ziziDev 2024. 12. 13. 10:00
반응형

 

앱에서 문제가 없다고 판단되면 웹을 한 번 찾아보는걸로..

 

해결 방법은 본문 스타일에서 "overflow:hidden"을 제거

 Mac 시스템 환경 설정 > 일반 > 스크롤 막대를 확인한 후 2개가 있어서 오류가 날 수도 있다는 소리

 

.site-content-wrapper {
 overflow-y: hidden;
}

 

 

 

WKWebView scrolling issue on iOS 13 | Apple Developer Forums

Looks like iOS 13 caused an issue in some of our pages we load using WKWebView. The issue is that you can't scroll vertically on the page as the screen jumps around back and forth while you try. Sometimes you can scroll slowly down the page, but eventually

developer.apple.com

https://medium.com/@nathantodd_/solution-scroll-trapped-issue-on-ios-sticky-scroll-overflow-css-fix-9d3800722feb

 

SOLUTION: Scroll trapped issue on iOS — sticky scroll, overflow css fix

The best I can describe the issue is the scrolling on the iPhone get’s ‘trapped’ which is very annoying. It’s like the scroll is stuck.

medium.com

 

반응형