How can I add a native view from a Cordova plugin
问题 I am developing a plugin with the latest version of Cordova (3.3). I need to add a native UIImageView to the Cordova view. If I have access to the project for example in the platform folder, I can add my view to the view instance belonging to CDVViewController . However, I am not sure how to access that reference from a plugin. Inside my plugin I have: @interface CDVCool : CDVPlugin @property (weak, nonatomic) UIImageView *nativeImageView; ... @end How can I initialize and render this view by