BDKInAppFileShareNotificationTouchListener
Objective-C
@protocol BDKInAppFileShareNotificationTouchListener
Swift
protocol InAppFileShareNotificationTouchListener
Represents a file share notification touch listener. Classes conforming to this protocol are notified when
a file share notification has been touched by the user, providing the FileShareNotification
object representing the touched notification.
You usually present a CallWindow
interface in response to this event handing it an OpenDownloadsIntent
object.
Doing so it will redirect the user of your app to the Downloads screen shown by the Bandyer CallViewController
.
-
Method called whenever the user touches a file share notification presented in-app. \param notification An opaque file share notification object representing the notification touched.
Declaration
Objective-C
- (void)didTouchFileShareNotification: (BDKFileShareNotification *_Nonnull)notification;
Swift
func onTouch(_ notification: BDKFileShareNotification)