Meeting header view that displays the meeting title, participant count, elapsed time clock, recording indicator, and camera switch button.
Parameter Type Required Default Description meetingRealtimeKitClient✅ - The RealtimeKit client instance for the active meeting
Method Return Type Description setContentTop(offset: CGFloat)VoidSets the top content offset for the header layout refreshNextPreviousButtonState()VoidRefreshes the enabled state of next and previous page buttons setClicks(nextButton:previousButton:)VoidAssigns tap handlers for the next and previous page buttons
let headerView = RtkMeetingHeaderView ( meeting : rtkClient )
view. addSubview ( headerView )
let headerView = RtkMeetingHeaderView ( meeting : rtkClient )
nextButton : { print ( "Next page" ) } ,
previousButton : { print ( "Previous page" ) }
headerView. refreshNextPreviousButtonState ()
view. addSubview ( headerView )