//
|
// MyJSInterface.h
|
// EasyJSWebViewSample
|
//
|
// Created by Lau Alex on 19/1/13.
|
// Copyright (c) 2013 Dukeland. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
#import "EasyJSDataFunction.h"
|
|
@interface MyJSInterface : NSObject
|
|
- (NSString *)getUid;
|
- (NSString *)getVersion;
|
- (NSString *)getSign:(NSString *)string;
|
- (void)toast:(NSString *)string;
|
- (void)jumpGoodsSplash:(NSString *)string;
|
- (void)jumpGoodsDetail:(NSString *)string;
|
/**
|
*
|
* 跳转到商品搜索页
|
*
|
*/
|
- (void)jumpSearch:(NSString *)key;
|
- (void)login;
|
@end
|