Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 2.61 KB

File metadata and controls

59 lines (47 loc) · 2.61 KB
pcx_content_type reference
title RtkControlBar
description API reference for RtkControlBar component (iOS Library)
products
realtime

Base control bar view with a More menu button and an End Call button. Serves as the foundation for RtkMeetingControlBar and RtkWebinarControlBar.

Initializer parameters

Parameter Type Required Default Description
meeting RealtimeKitClient - The RealtimeKit client instance
delegate RtkTabBarDelegate? - Delegate for handling tab bar interactions
presentingViewController UIViewController - View controller used for presenting modal screens
appearance RtkControlBarAppearance RtkControlBarAppearanceModel() Appearance configuration for the control bar
settingViewControllerCompletion (() -> Void)? nil Closure called when the settings view controller dismisses
onLeaveMeetingCompletion (() -> Void)? nil Closure called when the participant leaves the meeting

Properties

Property Type Required Default Description
moreButton RtkMoreButtonControlBar - - The More menu button (read-only)
endCallButton RtkEndMeetingControlBarButton - - The End Call button

Usage Examples

Basic Usage

import RealtimeKitUI

let controlBar = RtkControlBar(
    meeting: rtkClient,
    delegate: self,
    presentingViewController: self
)
view.addSubview(controlBar)

With completion handlers

import RealtimeKitUI

let controlBar = RtkControlBar(
    meeting: rtkClient,
    delegate: self,
    presentingViewController: self,
    onLeaveMeetingCompletion: {
        self.dismiss(animated: true)
    }
)
view.addSubview(controlBar)