在iOS13.7,机型iPhone6s 可以正常跳转
在iOS 15.4.1机型XR ,app首次可以跳转指定页面,再次app跳转小程序,一直显示跳转中?
iOS代码实现:
let launchMiniProgramReq:WXLaunchMiniProgramReq = WXLaunchMiniProgramReq.object()
launchMiniProgramReq.userName = "gh_cbe1xxxxx"; //拉起的小程序的username
launchMiniProgramReq.path = "pagesTaxi/pages/index/index"; ////拉起小程序页面的可带参路径,不填默认拉起小程序首页,对于小游戏,可以只传入 query 部分,来实现传参效果,如:传入 "?foo=bar"。
launchMiniProgramReq.miniProgramType = .release; //拉起小程序的类型
WXApi.send(launchMiniProgramReq) { result in
}