Search code examples
iosios5jailbreak

How to remove app icon programmatically from jail broken iPhone app?


How to remove my application icon for my app functionality? I want to do it only in jail break devices.


Solution

  • You have to modify the Info.plist file in your app bundle to include this:

    <key>SBAppTags</key>
    <array>
        <string>hidden</string>
    </array>
    

    (source)