wx.showActionSheet iOS不显示itemList内容
调用小程序原生ActionSheet,在安卓微信显示没问题,ios 微信 与 开发工具显示异常,代码如下。
wx.showActionSheet({
itemList: ['删除该记录'],
itemColor: 'red',
alertText: "标题文案",
success: function(res) {
if (!res.cancel) {
console.log(res.tapIndex)
}
}
});
iOS 中列表未显示,并且会被自定义 tabBar 遮挡
开发工具中标题未显示
安卓可正常显示
3 回复
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)