某个应用程序使用了短信功能,如何发布该应用程序以禁止 iPod touch 用户下载

发布于 2024-09-14 12:22:36 字数 207 浏览 3 评论 0 原文

我使用了如下代码:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://123"]];
  1. 如果它在 ipod touch 中运行会发生什么如何
  2. 仅在将应用程序发布到商店时才定位 iPhone 用户。

I used some code like below:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://123"]];
  1. what would happen if it runs in ipod touch
  2. how to target iphone user only when publish the app to the store.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小矜持 2024-09-21 12:22:36

在应用的 Info.plist 文件中,设置 UIRequiredDeviceCapability 属性以包含 sms 作为键之一。 App Store 将决定是否向用户浏览 App Store 的设备展示您的应用程序,并且 iTunes 将知道它可以将您的应用程序同步到哪些设备,不能同步到哪些设备。

In your app's Info.plist file, set the UIRequiredDeviceCapabilities property to contain sms as one of the keys. The App Store will handle whether or not to present your app to which devices that users browse the App Store with, and iTunes will know which devices it can sync your app to and which it can't.

终难遇 2024-09-21 12:22:36

您需要更新您的应用程序 info.plist 文件。它可以让您将应用程序限制在某些设备、操作系统等。

请参阅 UIRequiredDeviceCapability 属性,您甚至可以指定设备需要 SMS :)

You need to update your applications info.plist file. It lets you restrict the application to certain devices, OS:es etc.

Look at the UIRequiredDeviceCapabilities property which allows you to even specify that the device requires SMS :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文