BlizzardMain.h 669 Bytes
#import <UIKit/UIKit.h>
#import "BlizzardInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL BlizzardYouYuanJiao;

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

@end