AthenaMain.h 652 Bytes
#import <UIKit/UIKit.h>
#import "AthenaMessage.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL AthenaYouYuanJiao;

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

@end