I want remove my application icon for my app functionality. I want to do it only in jail break devices.
Please guide me if anyone know how I have to do.
I want remove my application icon for my app functionality. I want to do it only in jail break devices.
Please guide me if anyone know how I have to do.
You have to modify the Info.plist file in your app bundle to include this:
<key>SBAppTags</key>
<array>
<string>hidden</string>
</array>
(source)