是否可以在iOS 7中隐藏地址栏?
我目前正在iOS 6中使用以下功能,但我刚刚更新了xCode并在iPhone Sim和iOS 7 Safari中测试过没有响应。
JS:
window.addEventListener("load",function() {
// Set a timeout...
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});