Wuyx
2016-12-01 a62229dd52507addd75498c136df906c43772a75
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
66
67
68
69
70
71
72
73
74
75
76
77
/*
 *  Copyright (c) 2014, Facebook, Inc.
 *  All rights reserved.
 *
 *  This source code is licensed under the BSD-style license found in the
 *  LICENSE file in the root directory of this source tree. An additional grant
 *  of patent rights can be found in the PATENTS file in the same directory.
 *
 */
 
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
 
#import <Bolts/BFAppLinkNavigation.h>
 
@class BFAppLinkReturnToRefererView;
@class BFURL;
 
typedef NS_ENUM(NSUInteger, BFIncludeStatusBarInSize) {
    BFIncludeStatusBarInSizeNever,
    BFIncludeStatusBarInSizeIOS7AndLater,
    BFIncludeStatusBarInSizeAlways,
};
 
/*!
 Protocol that a class can implement in order to be notified when the user has navigated back
 to the referer of an App Link.
 */
@protocol BFAppLinkReturnToRefererViewDelegate <NSObject>
 
/*!
 Called when the user has tapped inside the close button.
 */
- (void)returnToRefererViewDidTapInsideCloseButton:(BFAppLinkReturnToRefererView *)view;
 
/*!
 Called when the user has tapped inside the App Link portion of the view.
 */
- (void)returnToRefererViewDidTapInsideLink:(BFAppLinkReturnToRefererView *)view
                                       link:(BFAppLink *)link;
 
@end
 
/*!
 Provides a UIView that displays a button allowing users to navigate back to the
 application that launched the App Link currently being handled, if the App Link
 contained referer data. The user can also close the view by clicking a close button
 rather than navigating away. If the view is provided an App Link that does not contain
 referer data, it will have zero size and no UI will be displayed.
 */
@interface BFAppLinkReturnToRefererView : UIView
 
/*!
 The delegate that will be notified when the user navigates back to the referer.
 */
@property (nonatomic, weak) id<BFAppLinkReturnToRefererViewDelegate> delegate;
 
/*!
 The color of the text label and close button.
 */
@property (nonatomic, strong) UIColor *textColor;
 
@property (nonatomic, strong) BFAppLink *refererAppLink;
 
/*!
 Indicates whether to extend the size of the view to include the current status bar
 size, for use in scenarios where the view might extend under the status bar on iOS 7 and
 above; this property has no effect on earlier versions of iOS.
 */
@property (nonatomic, assign) BFIncludeStatusBarInSize includeStatusBarInSize;
 
/*!
 Indicates whether the user has closed the view by clicking the close button.
 */
@property (nonatomic, assign) BOOL closed;
 
@end