HotApp小程序统计开发总结之设置了navigationBarBackgroundColor颜色,android 可以显示,ios不能显示

比如开发里在app.json里这只如下

"window":{
    "backgroundTextStyle":"light",
    "navigationBarBackgroundColor": "blue",
    "navigationBarTitleText": "WeChat",
    "navigationBarTextStyle":"black"
  }


android 有效, ios 无效。 

原因是微信对ios的颜色值支持有问题

像这样的就无问题,

 https://weixin.hotapp.cn/

   "window":{
    "navigationBarBackgroundColor": "#ff9b6e",
    "navigationBarTitleText": "HotApp云笔记",
    "navigationBarTextStyle":"#ffffff",
    "backgroundTextStyle":"light",
    "backgroundColor": "#efeff4",
    "enablePullDownRefresh": true
  },

原因:颜色修改为具体的颜色值就Ok了


HotApp小程序统计,小程序运营推广效果监控工具,免费的https 云后台可供开发者学习

https://weixin.hotapp.cn/


你可能感兴趣的:(HotApp小程序统计开发总结之设置了navigationBarBackgroundColor颜色,android 可以显示,ios不能显示)