我发现自己处于一种奇怪的情况,我在 iOS 中为我正在构建的 Web 应用程序设置了启动画面,并且发现自己在启动/关闭/重新启动它之后无法退出它次。这个错误似乎也阻止了重新启动,我可以在 iPad 3 和 iPad mini 上重新创建它,并且想知道其他人是否知道这一点?
本质上,这样做的原因是:
- 您无法通过点击主页按钮或长按退出应用程序
- 长按关机键无法关机!
- 屏幕不会关闭
我正在为每个人使用最新的 iOS,目前似乎一直在等待他们都用完电!
这是我为显示启动画面设置的代码:
<link href="images/touch/splash/splash-320x480.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-640x960.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-640x1136.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-768x1024.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-1024x768.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-1536x2048.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<link href="images/touch/splash/splash-2048x1636.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
我想知道是否有其他人能够重新创建以确认此问题?直到我添加了启动画面,我才看到这一点。
编辑:我只能通过按住电源按钮和主页按钮来重置。编辑2:现在我已经重新启动了他们每个人我现在无法重新创建问题。我会继续尝试,但似乎没有任何押韵或理由说明是什么原因导致它出现在 2 个不同的设备上。