某个应用程序使用了短信功能,如何发布该应用程序以禁止 iPod touch 用户下载
我使用了如下代码:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://123"]];
- 如果它在 ipod touch 中运行会发生什么如何
- 仅在将应用程序发布到商店时才定位 iPhone 用户。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在应用的
Info.plist
文件中,设置UIRequiredDeviceCapability
属性以包含sms
作为键之一。 App Store 将决定是否向用户浏览 App Store 的设备展示您的应用程序,并且 iTunes 将知道它可以将您的应用程序同步到哪些设备,不能同步到哪些设备。In your app's
Info.plist
file, set theUIRequiredDeviceCapabilities
property to containsms
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.您需要更新您的应用程序 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 :)