How to remove app icon programatically from jail b

2019-02-18 04:15发布

问题:

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.

回答1:

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

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

(source)