BBASMPlugin+SMS.h
1 KB
//
// BBASMPlugin+SMS.h
// BBAMNP
//
// Created by baidu on 2020/6/11.
// Copyright © 2020 Baidu. All rights reserved.
//
#import "BBASMPlugin.h"
#import <MessageUI/MFMessageComposeViewController.h>
@interface BBASMPlugin (SMS) <MFMessageComposeViewControllerDelegate>
/**
* 描 述: 小程序打开系统发送短信面板
* 示 例: baiduboxapp://swanAPI/openSMSPanel?params={}&callback=_bdbox_js_186&upgrade=0
* 文 档: http://es.baidu-int.com/#/apidetail/1166
* 备 注:
* ********** description ************
* @name: boxjs.openSMSPanel
* @authority: swanAPI
* @path: /openSMSPanel
* @args: [{"name": "cb", "value": "string"}, {"name": "content", "value": "string="}, {"name": "recipients", "value": "string[]="}]
* @config: {"swan": {"web": {"invoke": "swan.message.url", "handler": "bridge", "extension": "boxjs"}, "jsc": {"invoke": "swan.method.url", "method": "_naSwan.bridge.postMessage", "extension": "boxjs"}}}
*/
- (void)openSMSPanel:(BBASchemeDispatcher *)dispatcher;
@end