BranchDelegate
@protocol BranchDelegate <NSObject>
These delegate methods are called when while Branch is starting a new URL session and possibly opening a deep link. All the methods are optional.
[Branch sharedInstance].delegate = delegateInstance;
-
Undocumented
Declaration
Objective-C
- (void) branch:(Branch*)branch didStartSession:(BranchSession*)session;
Swift
optional func branch(_ branch: Branch, didStart session: BranchSession)
-
Undocumented
Declaration
Objective-C
- (void) branch:(Branch*)branch didOpenURLWithSession:(BranchSession*)session;
Swift
optional func branch(_ branch: Branch, didOpenURLWith session: BranchSession)