BBASMPlugin+Springback.h
1.37 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// BBASMPlugin+Springback.h
// SWAN
//
// Created by baidu on 2018/5/29.
// Copyright © 2018年 baidu. All rights reserved.
//
#import "BBASMPlugin.h"
@interface BBASMPlugin (Springback)
/**
* 描 述: 在小程序中,关闭webview下拉回弹的能力
* 示 例: baiduboxapp://swanAPI/closeSpringback?callback=_bdbox_js_758&upgrade=0
* 文 档: http://ft.baidu.com/#/scheme/swan_closespringback
* 备 注:
* ********** description ************
* @name: springback.remove
* @authority: swanAPI
* @path: /closeSpringback
* @args: []
* @config: {"swan": {"web": {"invoke": "swan.message.url", "handler": "bridge"}, "jsc": {"invoke": "swan.method.url", "method": "_naSwan.bridge.postMessage"}}}
*/
- (void)closeSpringback:(BBASchemeDispatcher *)dispatcher;
/**
* 描 述: 在小程序中,打开webview下拉回弹的能力
* 示 例: baiduboxapp://swanAPI/openSpringback?callback=_bdbox_js_758&upgrade=0
* 文 档: http://ft.baidu.com/#/scheme/swan_openspringback
* 备 注:
* ********** description ************
* @name: springback.insert
* @authority: swanAPI
* @path: /openSpringback
* @args: []
* @config: {"swan": {"web": {"invoke": "swan.message.url", "handler": "bridge"}, "jsc": {"invoke": "swan.method.url", "method": "_naSwan.bridge.postMessage"}}}
*/
- (void)openSpringback:(BBASchemeDispatcher *)dispatcher;
@end