From ec00c47a8435ce484427caf1bc2413a7b0851307 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Sat, 18 Apr 2015 23:36:43 +0000 Subject: [PATCH] update website --- docs/linkingios.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/linkingios.html b/docs/linkingios.html index 26e20f0de7f..1ecff740f91 100644 --- a/docs/linkingios.html +++ b/docs/linkingios.html @@ -20,7 +20,9 @@ execution you'll need to add the following lines to you *AppDelegate. } else { LinkingIOS.openURL(url); } -});

Methods #

static addEventListener(type: string, handler: Function) #

Add a handler to LinkingIOS changes by listening to the url event type +});

The iOS simulator does not support the mailto: and tel: schemas +because the Mail and Phone apps are not installed - you will need to test +them on a device.

Methods #

static addEventListener(type: string, handler: Function) #

Add a handler to LinkingIOS changes by listening to the url event type and providing the handler

static removeEventListener(type: string, handler: Function) #

Remove a handler by passing the url event type and the handler

static openURL(url: string) #

Try to open the given url with any of the installed apps.

static canOpenURL(url: string, callback: Function) #

Determine wether or not the an installed app can handle a given url The callback function will be called with bool supported as the only argument

static popInitialURL() #

If the app launch was triggered by an app link, it will pop the link url, otherwise it will return null

© 2015 Facebook Inc.