dpogue commented on PR #1695: URL: https://github.com/apache/cordova-ios/pull/1695#issuecomment-5419439213
> when the scroll-view delegate callback does not fire the status bar view stays hidden Under what conditions does `scrollViewDidChangeAdjustedContentInset:` not fire? WebKit internally sets the content inset on the scroll view: https://github.com/WebKit/WebKit/blob/4087ab818e4949f1d63a8c4c54fd08369b48f420/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm#L3735 That method gets called unconditionally as part of setting up the scroll and content views: https://github.com/WebKit/WebKit/blob/4087ab818e4949f1d63a8c4c54fd08369b48f420/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm#L244 It's also called again any time the `viewport-fit` meta directive is changed: https://github.com/WebKit/WebKit/blob/4087ab818e4949f1d63a8c4c54fd08369b48f420/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm#L3757 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
