react-native/Libraries/LinkingIOS/RCTLinkingManager.h

28 lines
785 B
C
Raw Normal View History

2015-03-26 01:59:42 +00:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
2015-03-26 01:59:42 +00:00
*/
#import <UIKit/UIKit.h>
#import <React/RCTEventEmitter.h>
2015-03-26 01:59:42 +00:00
@interface RCTLinkingManager : RCTEventEmitter
2015-03-26 01:59:42 +00:00
+ (BOOL)application:(UIApplication *)app
openURL:(NSURL *)URL
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options;
+ (BOOL)application:(UIApplication *)application
openURL:(NSURL *)URL
sourceApplication:(NSString *)sourceApplication
annotation:(id)annotation;
2015-03-26 01:59:42 +00:00
+ (BOOL)application:(UIApplication *)application
continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(void (^)(NSArray *))restorationHandler;
2015-03-26 01:59:42 +00:00
@end