mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 08:57:53 -05:00
22 lines
440 B
Objective-C
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 |