Reputation: 631
I'm trying to change the icon in my old app project. I've updated to xcode 5 and want to get a "ios 7 design". However, you don't change the icon the way you did before. I've seen that you are supposed to have e file called Images.xcassets with should include your icons, but I don't have that one because you only seem get it if you are making a new project.
This should be very easy, what should I do??
Upvotes: 10
Views: 29016
Reputation: 949
Steps:
(BTW This is the same as find Images.xcassets in project navigator)
Now you can drag and drop icons to proper placeholders.
Upvotes: 1
Reputation: 2902
Porting an App from xcode 4.6 to xcode 5 I didn't use The Images.xcassets file. Where in xcode 4.6 was the place to put icons and launch screens, in xcode 5 there is a large list of icon sizes to put the icon app for iOS 7, iOS 6.1 and prior versions, spotlight...
Upvotes: 0
Reputation: 125037
Select the project icon in the file list, choose the General tab, and scroll down to the App Icons section. From there you can either:
use the Source popup to choose "Don't use asset catalogs"
create a new asset catalog and drag your icons into it; clicking the little grey arrow icon next to the popup will take you to the icons in your assets catalog
Upvotes: 10