anilgunnam commented on issue #1410:
URL: https://github.com/apache/cordova-ios/issues/1410#issuecomment-2015492709

   In the plugin we use, Main plugin class which extends CDVPlugin has the 
below, it's using commandDelgate from CDVPlugin:
    __weak CDVCommandDelegateImpl* delegate = self.commandDelegate;
   
   After this it calls other class in plugin by passing this commanddelegate as 
parameter. In other class header, import is defined in the as there are methods 
which has this CDVCommandDelegateImpl parameter:
   #import <Cordova/CDVCommandDelegateImpl.h>
   
   - (void) startLogin: (CDVCommandDelegateImpl*) commandDelegate
        withCallbackId: (NSString*) callbackId;
   
   If i try to use the CDVCommandDelegate interface instead of 
CDVCommandDelegateImpl in the method declaration, it says invalid type. Any 
idea on how to fix this?


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

Reply via email to