lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 * All rights reserved.
 *
 * This source code is licensed under the license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
#if !TARGET_OS_TV
 
#import <Foundation/Foundation.h>
 
#import <FBSDKCoreKit/FBSDKAppLinkTarget.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/** The version of the App Link protocol that this library supports */
FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersion
NS_SWIFT_NAME(AppLinkVersion);
 
/**
 Contains App Link metadata relevant for navigation on this device
 derived from the HTML at a given URL.
 */
NS_SWIFT_NAME(AppLink)
@interface FBSDKAppLink : NSObject
 
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
 
/**
 Creates a FBSDKAppLink with the given list of FBSDKAppLinkTargets and target URL.
 
 Generally, this will only be used by implementers of the FBSDKAppLinkResolving protocol,
 as these implementers will produce App Link metadata for a given URL.
 
 @param sourceURL the URL from which this App Link is derived
 @param targets an ordered list of FBSDKAppLinkTargets for this platform derived
 from App Link metadata.
 @param webURL the fallback web URL, if any, for the app link.
 */
// UNCRUSTIFY_FORMAT_OFF
+ (instancetype)appLinkWithSourceURL:(nullable NSURL *)sourceURL
                             targets:(NSArray<FBSDKAppLinkTarget *> *)targets
                              webURL:(nullable NSURL *)webURL
NS_SWIFT_NAME(init(sourceURL:targets:webURL:));
// UNCRUSTIFY_FORMAT_ON
 
/** The URL from which this FBSDKAppLink was derived */
@property (nullable, nonatomic, readonly, strong) NSURL *sourceURL;
 
/**
 The ordered list of targets applicable to this platform that will be used
 for navigation.
 */
@property (nonatomic, readonly, copy) NSArray<id<FBSDKAppLinkTarget>> *targets;
 
/** The fallback web URL to use if no targets are installed on this device. */
@property (nullable, nonatomic, readonly, strong) NSURL *webURL;
 
@end
 
NS_ASSUME_NONNULL_END
 
#endif