MarvelMain.h 655 Bytes
#import <UIKit/UIKit.h>
#import "MarvelInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL MarvelYouYuanJiao;

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

@end