ios - Detect app installation with StoreKit -


ios6 introduced storekit framework designated interacting appstore within app. managed direct user specific app, question how can detect whether user installed app redirected him to?

this done calling -canopenurl: on uiaplication object this:

nsurl *appurl = [nsurl urlwithstring:@"fb:"]; bool appinstalled = [[uiapplication sharedapplication] canopenurl:appurl]; 

but need know url scheme second app open. declared in info.plist file app developer.


Comments

Popular posts from this blog

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

Why does Go error when trying to marshal this JSON? -