SolsticeMain.h 669 Bytes
#import <UIKit/UIKit.h>
#import "SolsticeInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>

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

@property(assign) BOOL SolsticeYouYuanJiao;

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

@end