Possible Duplicate:
Change icon on of an App in iOS 4 in run-time
Is there any way to change the app icon through Cocoa Touch, the way that Calendar app does?
Is there any way to change the app icon through Cocoa Touch, the way that Calendar app does? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Nope! (or not without jailbreaking and releasing your app in cydia that is) All applications that come with the device run with different permissions than the ones that you install from the app store, and the 'app store apps' can only modify files in their sandbox. the icon.png is not in the sandbox, or the "Documents" folder, it is in the "Appname.app" folder. |
|||||||||||
|
|
No, this is not possible. The icon is set in Info.plist which is part of the app bundle. The app bundle is a collection of all of the files that make up the app (all pictures, videos, files you dragged into Xcode). When submitted to the App Store, the app bundle is signed with a certificate that prevents its modification (so that you cannot change any parts of the app after approval AND so that the device knows it has received a copy from Apple that has not been tampered with along the way). If the icon is set in Info.plist and this cannot be modified, then we're going to have a problem! This issue is resolved for Newsstand apps. When a magazine is updated, it would only make sense for the icon to update to a picture of the latest issue. If your app is a Newsstand app and you use the NewsstandKit framework, then you can simply change the icon using the code below.
Newsstand apps still have a generic icon and icon properties set in Info.plist, but the system can change the icon when told by the app. |
|||||
|