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.
Fixed issue 192 (BoltsFramework#192), allowing projects that include …
…frameworks which themselves include Bolts to work without running into “Include of non-modular header inside framework module” compilation errors.
- Loading branch information
Showing
10 changed files
with
65 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
*/ | ||
|
||
#import "Bolts.h" | ||
#import "BoltsVersion.h" | ||
|
||
NSInteger const kBFMultipleErrorsError = 80175001; | ||
|
||
|
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,19 @@ | ||
// | ||
// BFAppLinkNavigationType.h | ||
// Bolts | ||
// | ||
// Created by Marcel Bradea on 2015-10-31. | ||
// Copyright © 2015 Parse Inc. All rights reserved. | ||
// | ||
|
||
/*! | ||
The result of calling navigate on a BFAppLinkNavigation | ||
*/ | ||
typedef NS_ENUM(NSInteger, BFAppLinkNavigationType) { | ||
/*! Indicates that the navigation failed and no app was opened */ | ||
BFAppLinkNavigationTypeFailure, | ||
/*! Indicates that the navigation succeeded by opening the URL in the browser */ | ||
BFAppLinkNavigationTypeBrowser, | ||
/*! Indicates that the navigation succeeded by opening the URL in an app on the device */ | ||
BFAppLinkNavigationTypeApp | ||
}; |
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,29 @@ | ||
// | ||
// BFAppLinkReturnToRefererViewDelegate.h | ||
// Bolts | ||
// | ||
// Created by Marcel Bradea on 2015-10-31. | ||
// Copyright © 2015 Parse Inc. All rights reserved. | ||
// | ||
|
||
@class BFAppLinkReturnToRefererView; | ||
@class BFAppLink; | ||
|
||
/*! | ||
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 |