Using in app purchase to unlock features vs. using free & paid app versions for iPhone

后端 未结 2 1700
别那么骄傲
别那么骄傲 2021-01-02 10:32

I have an app that I was going to release as a free (lite) version with some of the total functionality and a paid full version with advanced functionality. Now, with in ap

2条回答
  •  隐瞒了意图╮
    2021-01-02 11:11

    I would highly recommend using the in-app purchasing over having different versions available.

    If you have different versions, users need to re-download the whole thing if they want to upgrade. This means they need to have twice the storage space and use up twice the network bandwidth to upgrade.

    I don't think your review concerns are founded. If your application is well made and users like it, you'll get positive reviews. To avoid having users be confused, make sure the application clearly states what can be purchased. Also, some people just dislike everything and will give you one star. These users are unavoidable, but if your app is good, there should be enough good reviews to balance them out.

    You're correct in your assumption that you would have to have conditionals for locked/unlocked content. However, this shouldn't be an enormous issue. Just persist what the user's purchased in a plist (suggested by Apple) or other persistent storage and make a class that you can query to find out if a particular feature has been purchased.

提交回复
热议问题