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
Post a Comment