我在开发网页应用时,可以设置 <meta name="apple-mobile-web-app-capable" content="yes"/>
当用户在ipad上用safari浏览器创建网页片段时,这个页面将以全屏模式打开。
我还可以通过使用下一个meta标签将状态栏设置为半透明。
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
我还可以用.mobileconfig文件来配置webclip。网页剪辑有效载荷
但是在这里我找不到有效载荷的选项来设置状态栏的半透明,在文档中我只找到了URL,Label,Icon,IsRemovable键。但在一个例子中,我还发现了FullScreen键,它将页面设置为全屏模式,但状态栏为黑色。
Question:May be somebody knows if it is possible to set status bar translucent in web clip payload in mobileconfig file?
我有同样的问题。你不能用mobileconfig做。
我用以下方法解决了这个问题。
首先在你网站的html头部分设置元名apple-mobile-web-app-status-bar-style和apple-mobile-web-app-capable。
在这之后,你必须在你的iOS设备上删除你的带有webclip的配置文件,然后重新安装。这将清理你的iOS设备上的缓存,并重新读取html文件中的元名称标签。
问候Filellinas