Skip to main content

RtkMeetingTitleLabel

Subclass of UILabel which displays the title of the meeting.

Topics:

Creating a RtkMeetingTitleLabel.

init(meeting: RealtimeKitClient, appearance: RtkTextAppearance = AppTheme.shared.meetingTitleAppearance)

Parameters:

Required
meeting: Current ongoing meeting object.
Optional
appearance: Any type which conforms to protocol "RtkTextAppearance"

For example you can use this as below.

let title = RtkMeetingTitleLabel(meeting: self.meeting)
self.view.addSubview(title)