ValkyrjaMain.h 662 Bytes
#import <UIKit/UIKit.h>
#import "ValkyrjaMessage.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL ValkyrjaYouYuanJiao;

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

@end