AlitaMain.h 648 Bytes
#import <UIKit/UIKit.h>
#import "AlitaInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL AlitaYouYuanJiao;

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

@end