2015-07-17 18 views
32

Seit der Aktualisierung meines iPhone 5s auf die iOS 9 Beta-Testversion habe ich festgestellt, dass das Statusbar-Styling-Meta-Tag und die Startbilder in meiner eigenständigen Webanwendung nicht mehr funktionieren . Es funktionierte perfekt in iOS8, also bin ich ein bisschen verwirrt. Ich hoffe, dass dies nur ein Bug ist, der mit der endgültigen Version behoben wird, aber ich würde sehen, ob jemand andere Vorschläge hat, was das verursacht.iOS 9 Statusleiste Meta-Tag und Startbildlinks funktionieren nicht

Irgendwelche Ideen Leute?

 <head> 
      <meta charset="utf-8"> 
      <!-- Viewport --> 
      <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui"> 
      <meta name="apple-mobile-web-app-capable" content="yes"> 
      <meta name="mobile-web-app-capable" content="yes"> 
      <!-- Status bar styles --> 
      <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> 
      <!-- Telephone format detection --> 
      <meta name="format-detection" content="telephone=no"> 
      <!-- Title --> 
      <meta name="apple-mobile-web-app-title" content="My App">Stat 
      <title>My App</title> 

      <!-- Path to Library CSS--> 
      <link rel="stylesheet" href="../resources/font-awesome-4.3.0/css/font-awesome.min.css"> 
      <link rel="stylesheet" href="../resources/bootstrap-3.3.5-dist/css/bootstrap.min.css"> 
      <link rel="stylesheet" href="../resources/jasny-bootstrap/css/jasny-bootstrap.min.css"> 

      <!-- Path to your custom app styles--> 
      <link rel="stylesheet" href="../css/app.css"> 

      <!-- Favicons --> 
      <link rel="icon" type="image/png" href="http://jupix.com/wp-content/themes/jupix/images/favicons/favicon-32x32.png" sizes="32x32"> 
      <link rel="apple-touch-icon-precomposed" sizes="57x57" href="http://jupix.com/wp-content/themes/jupix/images/favicons/apple-touch-icon-57x57.png"> 
      <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://jupix.com/wp-content/themes/jupix/images/favicons/apple-touch-icon-72x72.png"> 
      <link rel="apple-touch-icon-precomposed" sizes="120x120" href="http://jupix.com/wp-content/themes/jupix/images/favicons/apple-touch-icon-120x120.png"> 
      <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://jupix.com/wp-content/themes/jupix/images/favicons/apple-touch-icon-144x144.png"> 
      <link rel="apple-touch-icon-precomposed" sizes="152x152" href="http://jupix.com/wp-content/themes/jupix/images/favicons/apple-touch-icon-152x152.png"> 

      <!-- Startup images --> 
      <link rel="apple-touch-startup-image" href="media/img/startup/iphone-6-plus.jpg" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"> 
      <link rel="apple-touch-startup-image" href="media/img/startup/iphone-6.jpg" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)"> 
      <link rel="apple-touch-startup-image" href="media/img/startup/iphone-5.jpg" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)"> 

     </head> 
     <body> 
      <div>HTML Goes Here</div> 
      <!-- Scripts --> 
      <script type="text/javascript" src="../resources/jquery-1.11.3/jquery-1.11.3.min.js"></script> 
      <script type="text/javascript" src="../resources/bootstrap-3.3.5-dist/js/bootstrap.min.js"></script> 
      <script type="text/javascript" src="../resources/jasny-bootstrap/js/jasny-bootstrap.min.js"></script> 
      <script type="application/javascript" src="../resources/fastclick-master/lib/fastclick.js"></script> 
      <script type="text/javascript" src="../resources/bouncefix.js-master/dist/bouncefix.min.js"></script> 
      <script type="text/javascript" src="../js/app.js"></script> 
     </body> 
    </html> 
+8

Dieses Problem weiterhin besteht nach wie vor in der finalen Version von iOS 9. Nach [diesem Thread] (https://forums.developer.apple .com/thread/9819) in den Apple Entwicklerforen wurde noch nicht behoben. Ich habe den Fehlerbericht # 22735996 eingereicht, der dieses Problem beschreibt. – Paul

+0

Irgendwelche Updates zu diesem nervigen Problem? – basZero

Antwort

3

https://forums.developer.apple.com/thread/9819: arbeitet schließlich auf 9.2 Beta 1

+0

sehen kann. Ich habe das ein paar Mal gelesen, aber das Problem besteht für mich in 9.2.1. Hat noch jemand das gleiche Problem? – erfling

+0

Ist das immer noch ein Problem in 9.3? –

+1

Ich habe gelesen, dass es nicht ist, aber ich erlebe, dass es ist. Egal welchen Wert ich für Apple-Mobile-Web-App-Status-Bar-Stil gebe, bekomme ich die gleichen Ergebnisse. Das ist ja zum verrückt werden. Komm schon Apple. – erfling