Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 iPhone 应用程序。在这个应用程序中,我想宣传我在 App Store 中的其他 iPhone 应用程序。我想在用户点击它们时随机显示我的其他应用程序的弹出窗口。然后,我们可以重定向以从 iTunes 下载该应用程序。
有任何想法吗?提前致谢..
您可以通过多种方式宣传其他应用程序。一种方法是在每次启动第 X 个应用程序时打开一个模态视图控制器,您会在其中随机显示其中一个应用程序。为了将用户重定向到应用程序,请使用以下代码片段:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/APPNAME"]];