CallBannerControllerDelegate
@objc(BDKCallBannerControllerDelegate)
public protocol CallBannerControllerDelegate : AnyObject
The CallBannerController‘s delegate. CallBannerController instances will notify their delegate about events that have or
are about to occur, giving them the ability to react to those event accordingly.
-
Invoked when the user has touched the “return to call” bar at the top of the screen.
Declaration
Swift
@objc func callBannerController(_ controller: CallBannerController, didTouch banner: CallBannerView)Parameters
controllerThe banner controller.
bannerThe
CallBannerViewinstance touched by the user. -
Invoked when the “return to call” bar is about to be hidden.
Declaration
Swift
@objc optional func callBannerController(_ controller: CallBannerController, willShow banner: CallBannerView)Parameters
controllerThe banner controller.
bannerThe
CallBannerViewinstance that is going to be hidden. -
Invoked when the “return to call” bar is about to be shown.
Declaration
Swift
@objc optional func callBannerController(_ controller: CallBannerController, willHide banner: CallBannerView)Parameters
controllerThe banner controller.
bannerThe
CallBannerViewinstance that is going to be shown.
View on GitHub
CallBannerControllerDelegate Protocol Reference