Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are Apple touch icons bigger than 60x60 supported, and if so, what dimensions should I use for the iPad and iPhone 4?

share|improve this question
possible duplicate of What are the correct pixel dimensions for an apple-touch-icon? – John Sep 16 '11 at 9:16

6 Answers

Use these sizes 57x57, 72x72, 114x114, 144x144 then do this in the head of your document:

<link rel="apple-touch-icon" href="apple-touch-icon-iphone.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-iphone4.png" />

   

This will look good on all apple devices. ;)

share|improve this answer
1  
+1 That sizes attribute pretty much says it all. – BoltClock Dec 28 '10 at 7:15
3  
Supporting documentation from apple: developer.apple.com/library/safari/#documentation/… – Jim Geurts Jan 15 '11 at 1:01
4  
The sizes attribute is not valid HTML though! – user584362 Jan 21 '11 at 13:12
1  
Note that the third generation "Retina" iPad uses icons at 144x144 pixels. – donut May 31 '12 at 16:45
4  
Older iOS devices don't understand the sizes attribute and so use whichever value is last. Therefore <link rel="apple-touch-icon" href="apple-touch-icon-iphone.png" /> should be last. Also, as pezillionaire says you can now add a new icon at 144x144 for the iPad Retina. – mattmook Nov 3 '12 at 22:34

With the iPad (3rd generation) there are now four icon sizes 57x57, 72x72, 114x114, 144x144.

Because retina icons are exactly double the size of the standard icons we really only need to make 2 icons: 114 x 114 and 144 x 144. By setting the retina sized icon to the corresponding standard icon iOS will scale them accordingly.

<!-- Standard iPhone --> 
<link rel="apple-touch-icon" sizes="57x57" href="touch-icon-iphone-114.png" />
<!-- Retina iPhone --> 
<link rel="apple-touch-icon" sizes="114x114" href="touch-icon-iphone-114.png" />
<!-- Standard iPad --> 
<link rel="apple-touch-icon" sizes="72x72" href="touch-icon-ipad-144.png" />
<!-- Retina iPad --> 
<link rel="apple-touch-icon" sizes="144x144" href="touch-icon-ipad-144.png" />
share|improve this answer
I like this method best. – Caleb Jares Apr 19 '12 at 18:46
This method has a beautiful simplicity to it. – PaulSkinner Aug 29 '12 at 14:27
So we make 2 only images and allow the device to scale down 2x. Cute. – superluminary Oct 23 '12 at 10:48

The icon on Apple's site is 129x129 pixels.
http://www.apple.com/apple-touch-icon.png

hope that answers your question.

share|improve this answer
1  
I went with this, so far it looks good. – Jessedc Aug 25 '10 at 2:25
1  
This. Or 144x144 (expected iPad Retina res). All of them look good scaled down to lower res iPhone/iPad sizes while planning ahead slightly for the future. – DOOManiac Jul 13 '11 at 18:47

Yes. If the size does not match, the system will rescale it. But it's better to make 2 versions of the icons.

  • iPad — 72x72.
  • iPhone (≥4) — 114x114.
  • iPhone ≤3GS — 57x57 — If possible.

You could differentiate iPad and iPhone by the user agent on your server. If you don't want to write script on server, you could also change the icon with Javascript by

<link ref="apple-touch-icon" href="iPhone_version.png" />
...

if (... iPad test ...) {
  $('link[rel="apple-touch-icon"]').href = 'iPad_version.png'; // assuming jQuery
}

This works because the icon is queried only when you add the web clip.

(There's no public way to differentiate iPhone ≥4 from iPhone ≤3GS in Javascript yet.)

share|improve this answer
1  
The iPhone 4's resolution is apparently scaled up from the iPhone 3's by a factor of two, so 114x114 would probably be a good choice for icon size for that. – JAB Jun 8 '10 at 13:09
@JAB: There are borders added to the icon so the actual icon size on iPhone ≤3GS is 59x60. If that's the case 114x114 could be a bit off. – KennyTM Jun 8 '10 at 13:12
Are the borders on the iPhone 4+ not scaled by the same amount, resolution-wise (so that size-wise they appear to be the same width)? – JAB Jun 8 '10 at 13:17
@JAB: It should be. I didn't check. – KennyTM Jun 8 '10 at 13:24
Thanks for all your ideas/advice. If i make 3 versions how do I target each device with the relevant size? Unless I'm missing something and PNG is a container format that I can put the different sizes in? – Harry Jun 8 '10 at 15:43
show 1 more comment

The relevant documentation on Apple's site, Specifying a Webpage Icon for Web Clip.

There is no need to put anything in the head of your document. If no icons are specified using a link element, the website root directory is searched for icons with the apple-touch-icon or apple-touch-icon-precomposed prefix.

For example, if the appropriate icon size for the device is 57 x 57, the system searches for filenames in the following order:

  • apple-touch-icon-57x57-precomposed.png
  • apple-touch-icon-57x57.png
  • apple-touch-icon-precomposed.png
  • apple-touch-icon.png
share|improve this answer
Yes but this question regards the new (larger) icons for iphone4 and ipad. – cherouvim May 30 '11 at 9:34
While it’s not necessary to specify anything in the header, it’s still a good practice. If you e.g. miss the 144x144 version for the retina iPad and there is no icon without a pixel dimension, Mobile Safari will fall back to displaying just a site’s preview, although it could use a non-optimal, but still better, smaller version. – Rafael Oct 17 '12 at 10:17

I think this question is about web icons. I've tried giving an icon at 512x512, and on the iPhone 4 simulator it looks great (in the preview) however, when added to the home-screen it's badly pixelated.

On the good side, if you use a larger icon on the iPad (still with my 512x512 test) it does seem to come out in better quality on the iPad. Hopefully the iPhone 4 rendering is a bug.

I've opened a bug about this on radar.

EDIT:

I'm currently using a 114x114 icon in hopes that it'll look good on the iPhone 4 when it is released. If the iPhone 4 still has a bug when it comes out, I'm going to optimize the icon for the iPad (crisp and no resize at 72x72), and then let it scale down for old iPhones.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.