There was an update that I only noticed. It will only apply to those people developing web content for the iPhone, but I've noticed the following:
You could in 2.1 save web apps (or websites with specific meta tags) to the homescreen, and those pages would reopen in a full screen mode (without any of the Mobile Safari related buttons). So basically it would run just like an application. However, with 2.1 you were confined to the page you were on, and clicking any link would close the full screen and open Safari and load the new page in Safari.
However, with 2.2 if you click a link it will actually load in the same full screen mode, so you could effectively develop completely transparent web applications (that would appear to be the same as its OS-based counterpart). I believe that the meta tag was discovered prematurely in 2.1, and that it was only optimized in 2.2 which explains why it works not but didn't fully work before (in terms of clicking a link and going back to regular Safari).
So a neat little update which will improve the quality of web apps or websites that exploit the feature.
If you have NO idea what I'm talking about, navigate to this link: http://univoxdesigns.com/mobile/home.php on your iPhone, and then save it to the home screen. Once it is on the home screen (the icon could change to say "ud") just click on it, and it will reopen in a full screen mode. Now prior to 2.2 if you clicked on any of the links in the header (which go to the same page, by the way) it would open up Safari, but now those links just load naturally in the full screen mode.
I assume most people couldn't care less about this update, but I was pretty excited as I'm exploring iPhone web related development.
By the way, the meta tags in question:
With the top one you can decide whether to have a gray bar or a black bar (where it says the time and what not), while the latter allows it to go to full screen mode after it's added to the home screen
You could in 2.1 save web apps (or websites with specific meta tags) to the homescreen, and those pages would reopen in a full screen mode (without any of the Mobile Safari related buttons). So basically it would run just like an application. However, with 2.1 you were confined to the page you were on, and clicking any link would close the full screen and open Safari and load the new page in Safari.
However, with 2.2 if you click a link it will actually load in the same full screen mode, so you could effectively develop completely transparent web applications (that would appear to be the same as its OS-based counterpart). I believe that the meta tag was discovered prematurely in 2.1, and that it was only optimized in 2.2 which explains why it works not but didn't fully work before (in terms of clicking a link and going back to regular Safari).
So a neat little update which will improve the quality of web apps or websites that exploit the feature.
If you have NO idea what I'm talking about, navigate to this link: http://univoxdesigns.com/mobile/home.php on your iPhone, and then save it to the home screen. Once it is on the home screen (the icon could change to say "ud") just click on it, and it will reopen in a full screen mode. Now prior to 2.2 if you clicked on any of the links in the header (which go to the same page, by the way) it would open up Safari, but now those links just load naturally in the full screen mode.
I assume most people couldn't care less about this update, but I was pretty excited as I'm exploring iPhone web related development.
By the way, the meta tags in question:
Code:
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-capable" content="yes" />
With the top one you can decide whether to have a gray bar or a black bar (where it says the time and what not), while the latter allows it to go to full screen mode after it's added to the home screen