本文介绍了以编程方式隐藏应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要像"Nike + iPod"应用程序一样,以编程方式在跳板中隐藏我的应用程序.有人知道如何实现这一目标吗?

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

PS:这是一个内部应用程序,我不打算提交到应用程序商店.

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

推荐答案

好,我做到了,在Info.plist中添加以下行,

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

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

我尝试过JB Device

I tried with JB Device

这篇关于以编程方式隐藏应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 07:27