如何在 iPhone 中使用配置文件在一段时间后使我的应用程序失效
我希望我的 iPhone 应用程序仅在特定时间段内有效。这必须通过配置文件而不是通过 App Store 来完成。请给我一些建议。
I want my iPhone app to be valid only for a particular time period. This has to be done by provisioning profile and not through the App Store. Please give me some suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个代表应用预览结束时间的 NSDate。然后将其与当前时间进行比较,如果结果更大,则您应该退出应用程序。尽管最好向用户显示预览期已过期的消息,因为苹果没有提供退出应用程序的直接方式。
Create a NSDate that represents the end time of your app preview. Then compare it to the current time and if the result is grater then you should exit the app. Although it is better to display a message to the user that the preview period expired as apple does not provide a straight forward way to exit the app.