Files
phonegap-plugins/iPhone/MessageBox/MessageBox.h
2011-11-26 16:13:00 +01:00

22 lines
440 B
Objective-C

//
// MessageBox.h
//
// Created by Olivier Louvignes on 11/26/11.
//
// Copyright 2011 Olivier Louvignes. All rights reserved.
// MIT Licensed
#import <Foundation/Foundation.h>
#import <PhoneGap/PGPlugin.h>
@interface MessageBox : PGPlugin {
NSString* callbackID;
}
@property (nonatomic, copy) NSString* callbackID;
//Instance Method
- (void) prompt:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
@end