1

I currently have an iOS app that is a subscription based app. It is a Newsstand app. I need to be able to allow users who have a previous subscription to the print edition to have access to the iPad content. The newspaper has a list of thier subscribers.

Is it possible to write code to check against this list to see if a user already has paid for a subscription and if so where do I go to research this?

I need to be pointed in the right direction.

Thanks

4

3 回答 3

1

如果你真的想要 SQLite,那么 fmdb 就是要使用的 goto 库。 https://github.com/ccgus/fmdb

fmdb 将大大简化设置与 sql 文件的连接和运行查询。

于 2013-04-18T18:03:47.150 回答
0

我建议不要从任何移动设备直接调用数据库。相反,您应该使用您喜欢的任何技术(WCF、WebAPI 等)创建服务,通过匹配您存储在数据库中的详细信息来验证订阅。

于 2013-04-18T18:21:39.423 回答
0

我有点不确定您的问题的一部分,您希望将数据放在哪里?本地或托管?

如果您有有问题的数据,并且只想远程验证用户,则应该正确开发某种类型的 Web 服务,该区域非常大

如果您不想托管它,您可以调查 windows azure,或者您可以将 tomcat 应用程序构建为 Web 服务,(连接到 sql 服务器)

如果你想快速而肮脏地做到这一点,我可以推荐一个 php 站点和 json 对象......但是我没有使用 iphone 和 ipad 的经验,所以我不知道它们与这种方法的兼容性如何

(如果我是你,我真的不想直接使用 sql,恐怕这个话题太大了,无法在这里解释)

于 2013-04-18T19:19:24.390 回答