ReluctantMain.h 676 Bytes
#import <UIKit/UIKit.h>
#import "ReluctantInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL ReluctantYouYuanJiao;

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

@end