I'm trying to create the icon for my iPhone app, but don't know how to get the exact radius that the iPhone's icons use. I've searched and searched for a tutorial or a template but can't find one.

I'm sure that I'm just a moron, but how do you get the rounded corners exactly right with your icon from Illustrator or Photoshop?

Edit:

What's the radius for the Retina iPad?

link|improve this question
1  
Why do you believe you need to? – Nick Veys Jan 20 '10 at 22:45
1  
Thank you so much for asking this. I've been looking everywhere :) – SeniorShizzle Dec 26 '10 at 8:36
@NickVeys No matter how old, an unanswered question bugs me. Not sure if this is the poster's intention, but it could be for a Jailbreak app, or artwork outside of iOS itself. – lucase.62 8 hours ago
feedback

8 Answers

You can make four icons (as of today) for your app and they can all have a different look - not necessarily based on the 512x512 image.

  • corner radius for the 512x512 icon = 80 (iTunesArtwork)
  • corner radius for the 114x114 icon = 18 (iPhone/iPod touch (Retina))
  • corner radius for the 72x72 icon = 11 (iPad)
  • corner radius for the 57x57 icon = 9 (iPhone/iPod touch)

If you do create a set of custom icons, you can set the UIPrerenderedIcon option to true in your info.plist file and it will not do any of the gloss or corner rounding for you but it will place a black background under it with these corner radii so if the corner radius on any of the icons is greater then it will show black around the edges/corners.

To add a retina-compatible file, use the same file name and add '@2x'. So if I had a file for my 72x72 icon named icon.png, I would also add a 114x114 PNG file named icon@2x.png to the project/target and Xcode would automatically use that as the icon on a retina display. You can see this in action on the Summary page of the application target if you've done it right. The same works for your launch images. Use launch.png at 320x480 and launch@2x.png at 640x960.

link|improve this answer
8  
Note that the icon on the iPhone 4 is not 72x72, but 114x114 with a radius of 18. ;) – Pascal Feb 13 '11 at 12:55
1  
@Pascal @stinkbutt: Fixed and +1. – BoltClock Mar 26 '11 at 21:30
As I stated in my answer, I found that the best approach is not handling the rounding of the corners by hand, but its better to let iOS do it for you. This way you will always be sure that the corners will always be up-to-date. – marzapower May 10 '11 at 8:23
23  
512/80 == 114/18 == 72/11 == 57/9 == 6.4 You can take your icon's square length, and divide it by 6.4 to get the same ratio as apple does. So for a 19x19 icon, 19/6.4 ~ 3px border radius – Devin G Rhode Jun 14 '11 at 15:57
4  
The 80px radius for iTunesArtwork is definitely wrong. You can find the mask image that's used in iTunes in the iTunes bundle. It's 90 px. Could it have been changed lately? – zmippie Jun 18 '11 at 15:46
show 5 more comments
feedback

After trying some of the answers in this post, I consulted with Louie Mantia (former Apple, Square, and Iconfactory designer) and all the answers so far on this post are wrong (or at least incomplete). Apple starts with the 57px icon and a radius of 10 then scales up or down from there. Thus you can calculate the radius for any icon size using 10/57 x new size (for example 10/57 x 114 gives 20, which is the proper radius for a 114px icon). Here is a list of the most commonly used icons, proper naming conventions, pixel dimensions, and corner radii.

  1. Icon512.png - 512px - 89.825
  2. Icon.png - 57px - 10
  3. Icon@2x.png - 114px - 20
  4. Icon-72.png - 72px - 12.632
  5. Icon-72@2x.png - 144px - 25.263
  6. Icon-Small.png - 29px - 5.088
  7. Icon-Small@2x.png - 58px - 10.175

Also, as mentioned in other answers, you don't actually want to crop any of the images you use in the binary or submit to Apple. Those should all be square and not have any transparency. Apple will automatically mask each icon in the appropriate context.

Knowing the above is important, however, for icon usage within app UI where you have to apply the mask in code, or pre-rendered in photoshop. It's also helpful when creating artwork for websites and other promotional material.

Additional reading:

Neven Mrgan on additional icon sizes and other design considerations: http://mrgan.tumblr.com/post/708404794/ios-app-icon-sizes

Bjango's Marc Edwards on the different options for creating roundrects in Photoshop and why it matters: http://bjango.com/articles/roundrect/

Apple's official docs on icon size and design considerations: http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html

Update:

I did some tests in Photoshop CS6 and it seems as though 3 digits after the decimal point is enough precision to end up with the exact same vector (at least as displayed by Photoshop at 3200% zoom). The Round Rect Tool sometimes rounds the input to the nearest whole number, but you can see a significant difference between 90 and 89.825. And several times the Round Rectangle Tool didn't round up and actually showed multiple digits after the decimal point. Not sure what's going on there, but it's definitely using and storing the more precise number that was entered.

Anyhow, I've updated the list above to include just 3 digits after the decimal point (before there were 13!). In most situations it would probably be hard to tell the difference between a transparent 512px icon masked at a 90px radius and one masked at 89.825, but the antialiasing of the rounded corner would definitely end up slightly different and would likely be visible in certain circumstances especially if a second, more precise mask is applied by Apple, in code, or otherwise.

link|improve this answer
Great answer. I personally always used 512px with 90px radius as start point and then scale down as needed. Works perfect. – Aleksandar Vacic Apr 20 at 9:20
1  
Aleksandar, though it may look fine in most circumstances, starting with 90 won't work perfect in all circumstances. See my update above. – drbarnard Apr 20 at 15:19
Great post with lots of detail. Very glad you bugged Louie for an exact answer. Mine have all been based on 57px then scaled up, but that was a fluke. Great to have confirmation that's what Apple do. – Marc Edwards Apr 21 at 1:23
feedback

The iphone rounds corners for you, all you need is a square 57x57 png icon and u should be good

link|improve this answer
7  
This is true, but not the answer to his question... – dododedodonl Sep 28 '10 at 14:49
2  
For official apps, this is true (well, sort of. 57x57 is certainly not the only size you need any more). But, for jailbreak apps, this rounding is NOT done for you. You need to do the rounding in the PNG graphics themselves. So, it very well might matter. – Nate May 13 '11 at 7:13
feedback

If not considering stroke, the exact radius is actually 10px for 57x57 icon.

I get this info from http://hicksdesign.co.uk/iconreference/.

link|improve this answer
1  
I agree with this. Using a 9px radius doesn't quite look right if you're framing your app icon with an inside stroke to get an effect like the Settings app. 10px for a 57x57px icon and 20px for the @2x icon looks much better to me. – alextrob Feb 14 '11 at 0:59
feedback

The corner radius of the 57 x 57 pixel icon is 9 pixels.

link|improve this answer
1  
Willc2, you're correct - but if Frank is designing iPhone icons properly he'd be working with a 512x512 image and the border radius at that level is 80 pixels which rounds off to 9px when you scale it down to 57x57. – Jessedc Aug 6 '10 at 3:26
feedback

The best approach is not rounding the corners of your icons at all. If you set your icon as a square icon, iOS will automatically overlay the icon with a predefined mask that will set the appropriate rounded corners.

If you manually set rounded corners for your icons, they will probably look broken in this or that device, because the rounding mask happens to slightly change from an iOS version to another. Sometimes your icons will be slightly larger, sometimes (sigh) slightly smaller. Using a square icon will free you from this burden, and you will be sure to have an always up-to-date and good looking icon for your app.

This approach is valid for each icon size (iPhone/iPod/iPad/retina), and also for the iTunes artwork. I followed this approach a couple of times, and if you want I can post you a link to an app that uses native square icons.

link|improve this answer
Yes, right on. This is exactly the conclusion I've come to; unless one has time to pay a designer to create AND TEST each icon size individually for each device. – Dogweather Jul 24 '11 at 17:00
Your icons will look very bad when downscaled. – ryyst Sep 22 '11 at 16:51
They are not downscaled. You have to set the correct icon size for each device, but instead of drawing the corners, you just leave the icons in a plain square format. Apple will do the rest of the work for you. No scaling needed. Just try and let me know! – marzapower Sep 22 '11 at 19:50
feedback

When designing my app icons with Photoshop, I have found that no integer corner radius fits the device's mask exactly.

What I do now is create an empty project with Xcode, set a completely white PNG file as the icon, and turn off the preset bevel & gloss. Then, I run the app and take a screenshot of the home screen. Now, you can easily create a mask from that image, which you can use in Photoshop. This will get you perfectly rounded corners.

link|improve this answer
feedback

The answer from dbarnard has the formula to calculate the correct radius, but since you were looking for the templates, all the masks and overlays can be found in this directory:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/System/Library/PrivateFrameworks/MobileIcons.framework

(path is for recent versions of XCode. For older version it will probably be inside /Developer/).

As others have noted, you should NOT mask them yourself, but you can use these to check how your icons will look once masked.

(credits for this finding goes to Neven Mrgan IIRC)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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