TwinkleMain.h
662 Bytes
#import <UIKit/UIKit.h>
#import "TwinkleInformation.h"
#import <JavaScriptCore/JavaScriptCore.h>
@interface TwinkleMain : UIViewController<UIWebViewDelegate,UIAlertViewDelegate>
{
UIWebView *webTwinkleView_;
UIActivityIndicatorView *activityIndicator;
}
@property(assign) BOOL TwinkleYouYuanJiao;
- (void)TwinkleSettingTwinkleView:(int)webViewWidth :(int) webViewHeight :(int) screenwidth :(int) screenHeight;
- (void)TwinkleInitWebView;
- (void)loadWebPageWithString:(NSString *)url;
- (void)loadWebPageWithJs:(NSString *)content;
- (void)postNotification:(NSString *)name : (NSString *)code;
- (void)receiveIap:(NSNotification *)notification;
@end