Braze iOS SDK
Documentation for the Braze iOS SDK
 All Classes Functions Properties
Instance Methods | List of all members
<ABKContentCardsTableViewControllerDelegate> Protocol Referenceabstract

Instance Methods

(BOOL) - contentCardTableViewController:shouldHandleCardClick:
 
(void) - contentCardTableViewController:didHandleCardClick:
 

Method Documentation

- (void) contentCardTableViewController: (ABKContentCardsTableViewController *)  viewController
didHandleCardClick: (NSURL *)  url 
optional

Informs the delegate that the content card click action was handled by the Braze SDK.

This method is not called if the delegate method contentCardTableViewController:shouldHandleCardClick: returns NO.

Warning
This method might not be called if you overrode handleCardClick:
Parameters
viewControllerThe view controller displaying the content card.
urlThe content card's url.
- (BOOL) contentCardTableViewController: (ABKContentCardsTableViewController *)  viewController
shouldHandleCardClick: (NSURL *)  url 
optional

Asks the delegate if the Braze SDK should handle the content card click action.

Warning
This method might not be called if you overrode handleCardClick:
Parameters
viewControllerThe view controller displaying the content card.
urlThe content card's url.
Returns
YES to let the Braze SDK handle the click action, NO if you wish to handle the click action yourself.