mikez1
mikez1

Reputation: 695

Implementing Achievements in iOS App without Game Center

Is there anyway possible to implement challenges and achievements in an app without using Game Center. The current app that I'm working on is not a game, but has challenges and achievements based on photo users submit. For example if a user uploads a photo of their pet, they get 50 points for submitting that picture.

Upvotes: 0

Views: 449

Answers (2)

YanSte
YanSte

Reputation: 10839

You can use that, I create a simple class for iOS game center in GitHub https://github.com/DaRkD0G/Easy-Game-Center-Swift

Upvotes: 1

RMK-Jacob
RMK-Jacob

Reputation: 209

I would recommend having an if statement (or something like that) set up, and whenever the user "completes" the achievement, it changes a value on your server to "completed", and adds the number of points earned from the achievement to the user's overall points. If you already have a database storing user account data, you could add fields for the achievements. Then when the app loads the "achievements" page, you could just check the server real quick and display the results.

Upvotes: 0

Related Questions