Eli
Eli

Reputation: 107

iOS app Icon - how to?

Can someone explain me or link - I have 512x512 icon but I have no idea what icons sizes I need to create and how to add them in to my iOS app. What sizes I need and how to add them, and for what?

Upvotes: 1

Views: 6097

Answers (7)

Benjamin Tan
Benjamin Tan

Reputation: 13

Question was asked a while back but the answer changes from time to time. Here are a few web tools that are updated with the latest requirements and get the job done:

http://www.theappicon.com/ or https://resizeappicon.com/

Drag and drop the .xcassets folder that they return into your xcode assets catalog and it should populate your app icons as you need them.

Upvotes: 0

Kedar Paranjape
Kedar Paranjape

Reputation: 1842

Download Asset Catalog Creator Free from iTunes. All you have to do is select a base image, and the program will create all required iOS icon sizes for you and place them neatly in an .xcassets file, which you can simply drag into Xcode without worrying about the sizes/resolutions of individual icons.

Upvotes: 0

rptwsthi
rptwsthi

Reputation: 10172

Specific name doesn't matter's any more for ios icon. All you need is perfect size.

I have created this application which will provide you all the icons based on information provided here. Get the application from here, and follow the instructions in readme file to create all the required icons for iOS application.

Upvotes: 0

Ramis
Ramis

Reputation: 16519

In the current 5.x xCode version you can use app icon set (AppIcon.appiconset). In the picture you can see where you can found it. Here is online tool, Icons Master, which will take care how icons should be big naming convection as well. enter image description here

Upvotes: 0

Andrew Hall
Andrew Hall

Reputation: 3073

Ive put all the images named correctly at the correct size into a github repo, so there can be no confusion.

https://github.com/FattusMannus/iOS-Development-Image-Placeholders

Just download them as a zip, edit them and copy them into your project

AH

Upvotes: 1

Roger
Roger

Reputation: 15813

The Apple documentation has all you need to know.

Upvotes: 8

Luke
Luke

Reputation: 7210

In a nutshell: 57x57 for non-retina iPhone or iPod Touch, 114x114 for retina display, and 72x72 for iPad.

Upvotes: 5

Related Questions