1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// // CDVPinDialog.h // HelloWorld // // // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import <Cordova/CDVPlugin.h> @interface CDVPinDialog : CDVPlugin <UIAlertViewDelegate>{} @property (nonatomic, copy) NSString* callbackId; - (void)prompt:(CDVInvokedUrlCommand*)command; @end