LinkingIOS
给你提供了一个通用接口,用来连接接收和发送应用程序的链接。
如果你的应用程序是从一个外部链接启动的,并且这个外部链接是注册到你的应用程序里的,那么你就可以利用任意你想要的组件去访问并且处理它
componentDidMount() { var url = LinkingIOS.popInitialURL(); }
在你的应用程序运行期间,如果你也想监听传入应用程序的链接,那么你需要将以下几行添加到你的 *AppDelegate.m
:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { return [RCTLinkingManager application:application openURL:url sourceApplication:sourceApplication annotation:annotation]; }
那么,在你的 React 组件中,你可以监听 LinkingIOS
上的事件,如下所示:
componentDidMount() { LinkingIOS.addEventListener("url", this._handleOpenURL); }, componentWillUnmount() { LinkingIOS.removeEventListener("url", this._handleOpenURL); }, _handleOpenURL(event) { console.log(event.url); }
为了触发一个应用程序的链接(浏览器,电子邮件,或者自定义模式),你需要调用
LinkingIOS.openURL(url)
如果你想要检查一个已经安装的应用程序是否可以提前处理一个给定的链接,你可以调用
LinkingIOS.canOpenURL(url, (supported) => { if (!supported) { AlertIOS.alert("Can"t handle url: " + url); } else { LinkingIOS.openURL(url); } });
static addEventListener(type: string, handler: Function)
通过监听 url
事件类型和提供处理程序,将一个处理程序添加到 LinkingIOS changes
static removeEventListener(type: string, handler: Function)
通过传递 url
事件类型和处理程序,删除一个处理程序
static openURL(url: string)
尝试通过任意已经安装的应用程序打开给定的 url
static canOpenURL(url: string, callback: Function)
决定一个已经安装的应用程序是否可以处理一个给定的 url
,该方法中回调函数将被调用,并且仅通过一个 bool supported
的参数。
static popInitialURL()
如果应用程序启动是通过一个应用程序链接触发的,那么它将弹出这个链接的 url,否则它将返回 null
。
震动 API 是在VibrationIOS.vibrate()里显示的。在 iOS 上,调用这个函数可以出发一秒钟的振动。振动是异步的,所以这个方法会立...
使用DatePickerIOS来在 iOS 上呈现一个日期/时间选择器(selector)。这是一个控制组件,所以为了组件更新,你必须钩在onDate...
jQuery Mobile pagecontainerload 事件 jQuery Mobile 事件实例在页面成功载入并插入到 DOM 后弹出文本信息:$(document).on(pag...
jQuery Mobile pageshow 事件jQuery Mobile 事件实例 在页面切换后显示之后弹出信息:$(document).on("pageshow","#pagetwo",fun...
jQuery Mobile pagehide 事件jQuery Mobile 事件实例 在页面切换后旧的页面隐藏之后弹出一些文本信息:$(document).on("pagehide...