Ga-yo opened a new issue, #1539:
URL: https://github.com/apache/cordova-ios/issues/1539

   ```
   // CDVPlugin.m
   
   @implementation UIView (org_apache_cordova_UIView_Extension)
   @dynamic scrollView;
   - (UIScrollView*)scrollView
   {
       SEL scrollViewSelector = NSSelectorFromString(@"scrollView");
       if ([self respondsToSelector:scrollViewSelector]) {
           return ((id (*)(id, SEL))objc_msgSend)(self, scrollViewSelector);
       }
       return nil;
   }
   ...
   
   // CDVPlugin.h
   
   @interface UIView (org_apache_cordova_UIView_Extension)
   @property (nonatomic, weak) UIScrollView* sscrollView;
   @end
   ...
   ```
   
   ---
   
   ```
   class A: UIView {
       var scrollView = UIScrollView() // ⁉  error in here >> Overridden 
declaration is here (Cordova.UIView)
   }
   ```
   Hello, I encountered a problem while using Cordova in the project.
   Because of the naming of 'scrollView' within the UIView Extension declared 
in CDVPlugin 
   An error is occurring in the existing project source code. (Our project also 
uses a name called 'scrollView'.)
   Can you check remodify the 'scrollView' naming??


-- 
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.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

Reply via email to