mtical
mtical

Reputation: 329

iOS Smart App Banners

Is there a way to pull properties from iOS Smart App Banners without actually rendering the banner? I'd like to use the banner to tell me if an app is installed on the phone or not since it apparently can detect that.

Upvotes: 1

Views: 1367

Answers (1)

Greg
Greg

Reputation: 9168

No. Apple does not expose any APIs to web pages to access the app banner (at least not any documented ones).

However, if your app supports a URL scheme, you could use one of the (slightly hacky) methods described in the answers to this question to check whether you can open that URL (and hence check whether the your app is installed).

Upvotes: 1

Related Questions