Question

I want to access score of user 'A' that he/she secure in Game_Application_1 within Game_Application_2 when user 'B' playing Game_Application_2.

Assuming user A given permission to access thier score.

Both Application developed by different developer.

Please let me know it is possible or not and if possible then how?

Thank you.

Was it helpful?

Solution

This totally depends, if you developing both app then yes. Storing the scores in the keychain can make it accessible to both app.

If you are you are not the developer of both apps then probably no, unless you have access to some kind of API that could tell you the score. Since you can not access data from other app the developers of the other should provide an API to allow you access the score. This can be web based of even using an App URL Scheme.

OTHER TIPS

If both apps are yours you can easily use iCloud's key-value Store to share information.

See Apple's Key-Value Data in iCloud.
See NSHipster's iCloud article.

In ios application you can't access data from out side the application bundle. If you want any information or data from out side the application bundle then you should use API (web services) which contain those information.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top