iOS – Hide apps on springboard

This is a trick to make an app invisible on Springboard.

Open your application .PLIST and add these lines:

[...]
<key>SBAppTags</key>
<array>
<string>hidden</string>
</array>
[...]

Build and Run!

Note that your app is hidden from recents and springboard!

have fun.