forked from BoltsFramework/Bolts-ObjC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
raise notification for applink insigths
squashed
- Loading branch information
Gen Wang
committed
Jul 17, 2014
1 parent
513935f
commit 2d2ad8b
Showing
12 changed files
with
336 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* 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 "BFAppLink.h" | ||
|
||
@interface BFAppLink (Internal) | ||
|
||
+ (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL | ||
targets:(NSArray *)targets | ||
webURL:(NSURL *)webURL | ||
isBackToReferrer:(BOOL)isBackToReferrer; | ||
|
||
/*! return if this AppLink is to go back to referrer. */ | ||
- (BOOL)isBackToReferrer; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* 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> | ||
|
||
/*! The name of the notification posted by BFMeasurementEvent */ | ||
FOUNDATION_EXPORT NSString *const BFMeasurementEventNotificationName; | ||
|
||
/*! Defines keys in the userInfo object for the notification named BFMeasurementEventNotificationName */ | ||
FOUNDATION_EXPORT NSString *const BFMeasurementEventNameKey; | ||
FOUNDATION_EXPORT NSString *const BFMeasurementEventArgsKey; | ||
|
||
/*! | ||
* Provides methods for posting notifications from the Bolts framework | ||
*/ | ||
@interface BFMeasurementEvent : NSObject | ||
|
||
+ (void) postNotificationForEventName:(NSString *)name args:(NSDictionary *)args; | ||
|
||
@end |
Oops, something went wrong.