4
J'utilise les iOs 3.2 et 4.0 et j'essaie d'exécuter le fichier html dans UIWebView. le fichier html contient les lignes suivantes:window.orientation ne fonctionne pas dans UIWebView
var pwint = function(text) {
var output = document.getElementById('output');
output.innerHTML = output.innerHTML + text + '\n';
};
var reorient = function(e) {
pwint('Window Orientation: ' + window.orientation);
};
window.onorientationchange = reorient
Le problème est que window.orientation
retourne toujours « 0 » alors que je lance le même code dans Safari fonctionne comme prévu.
des idées?