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

fix(iOS): Inline code to find the webview's scrollView #272

Merged
merged 1 commit into from
Aug 20, 2024

Commits on Aug 16, 2024

  1. fix(iOS): Inline code to find the webview's scrollView

    Currently this works because of a category extension that adds a
    `scrollView` method to every UIView instance, but that causes issues for
    SwiftUI so we want to remove that extension from cordova-ios.
    
    Since we do need to be able to look up the scrollView in this plugin, we
    can just define a private local method that does the same thing in a way
    that doesn't pollute global UIKit classes.
    
    Ref: apache/cordova-ios#1400
    dpogue committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    968eb7f View commit details
    Browse the repository at this point in the history