Blackmoon
Blackmoon

Reputation: 362

hide apps programmatically

I need to hide my app programmatically from the springboard as the "Nike+ iPod" app does. Does anyone know how to achieve this?

PS: It's an in-house app and I'm not planning to submit to the app store.

Upvotes: 2

Views: 1840

Answers (1)

JOA80
JOA80

Reputation: 527

Ok I achieved it, In the Info.plist add following lines,

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

I tried with JB Device

Upvotes: 3

Related Questions