Reputation: 5228
I am developing iPhone app. When i run the app on iPhone i can see the the icon on Home screen. But when i run the same app on iPad whitish icon appears which normally appears when the app has no icon.
I have tested my other iPhone apps they are working fine but this is causing trouble. I used Asset Catalogs to display app icons and they are perfectly adjusting in it. What could be the problem here any suggestions?
Upvotes: 8
Views: 9269
Reputation: 996
In project settings there are fields for both, iPad and iPhone icons. You may want to provide different icons for different devices, so try providing your icon for both, iPad and iPhone. Even though it will be the same image.
Upvotes: 0
Reputation: 1321
In my case i do have set images for iPad in my assets but even then it was not showing. I have to check Target Membership check box. I had imported AppIcons folder and this got uncheck.
Upvotes: 0
Reputation: 1813
I also initially started with developing the app for iPhone and then needed to add iPad icons and here where I found them:
1) go to Assets 2) find appIcon (usually on top) 3) go to attributes inspector 4) choose iPad ios swift version 5) iPad iCons holders will appear you will need to fill them
Upvotes: 16
Reputation: 1889
go to general , then app icon source , then click the appicon
by default , you can't see the place for ipad
3 . left click and create a new image set
Upvotes: 0
Reputation: 5228
xCode 5 was not showing anything related to iPad for an iPhone only app. So when i migrated my images to Assets Catalogs and clicked on app icon in the Attribute Inspector i was given the options like i want to give icons for iPad. So i provided and problem solved :)
Upvotes: 8
Reputation: 1828
In project settings there are fields for App Icons please refer to the attachment
Upvotes: 0
Reputation: 4005
for Universal application iPad Icon file size is 72x72 and named Icon-72 and for Retina its 114x114 with [email protected]. Try to include this files into your resource bundle and then build your app
Upvotes: 0
Reputation: 1195
Hope the stackoverflow link will help How do you update the app icons and launch images to support IOS 6 and 7 simultaneously?
As answered by Andy Bean, try using Asset Catalog.
Link 2: iOS 7 App Icons, Launch images And Naming Convention While Keeping iOS 6 Icons
Upvotes: -1