ImpetrateMain.h 676 Bytes
#import <UIKit/UIKit.h>
#import "ImpetrateInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

@interface ImpetrateMain : UIViewController<UIWebViewDelegate,UIAlertViewDelegate>
{
    UIWebView *webImpetrateView_;
    UIActivityIndicatorView *activityIndicator;
}

@property(assign) BOOL ImpetrateYouYuanJiao;

- (void)ImpetrateSettingImpetrateView:(int)webViewWidth :(int) webViewHeight :(int) screenwidth :(int) screenHeight;
- (void)ImpetrateInitWebView;
- (void)loadWebPageWithString:(NSString *)url;
- (void)loadWebPageWithJs:(NSString *)content;
- (void)postNotification:(NSString *)name : (NSString *)code;
- (void)receiveIap:(NSNotification *)notification;

@end