重庆迈尖科技有限公司
2018-10-08 3aa774bc9655922a31038d2b51cf0d4b2ea97682
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  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