dpogue commented on PR #1400: URL: https://github.com/apache/cordova-ios/pull/1400#issuecomment-2308163766
The equivalent Objective C code would be (copied from the statusbar plugin): ```objc - (UIScrollView *)webViewScrollView { SEL scrollViewSelector = NSSelectorFromString(@"scrollView"); if ([self.webView respondsToSelector:scrollViewSelector]) { return ((id (*)(id, SEL))objc_msgSend)(self.webView, scrollViewSelector); } return nil; } ``` -- 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: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org