McsileMain.h 655 Bytes
#import <UIKit/UIKit.h>
#import "McsileInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL McsileYouYuanJiao;

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

@end