请移步 新的文档。此文档以停止更新
关闭小程序
2.6.3开始支持此功能
小程序环境
注:此方法需要在集成SDK的原生工程中使用,在HBuilderX 内置基座运行无效果;
小程序中可调用plus.runtime.quit()
方法关闭自己,返回宿主App
plus.runtime.quit()
宿主App
宿主可以直接调用 sdk 的方法,关闭当前运行的小程序
iOS 示例
关闭当前运行的小程序
[DCUniMPSDKEngine closeUniMP];
当小程序关闭时会触发 DCUniMPSDKEngineDelegate 协议的uniMPOnClose:
方法
/// 监听关闭小程序的回调方法
- (void)uniMPOnClose:(NSString *)appid {
NSLog(@"小程序 %@ 被关闭了",appid);
}
Android 示例
关闭当前运行的小程序
DCUniMPSDK.getInstance().closeCurrentApp()
监听小程序关闭触发事件
DCUniMPSDK.getInstance().setUniMPOnCloseCallBack(new DCUniMPSDK.IUniMPOnCloseCallBack() {
@Override
public void onClose(String appid) {
Log.e("unimp", appid+"被关闭了");
}
});
TIP:
如果您想关闭A小程序后紧接着打开B小程序,在监听小程序被关闭的方法中操作是比较好的时机;
4 个评论
要回复文章请先登录或注册
3***@qq.com
3***@qq.com
DCloud_iOS_XHY (作者)
CC0_0