OdysseyMain.h 662 Bytes
#import <UIKit/UIKit.h>
#import "OdysseyInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL OdysseyYouYuanJiao;

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

@end