Skip to main content

DyteMeetingTitleLabel

Subclass of UILabel which displays the title of the meeting.

Topics:​

Creating a DyteMeetingTitleLabel.​

init(meeting: DyteMobileClient, appearance: DyteTextAppearance = AppTheme.shared.meetingTitleAppearance)

Parameters:​

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

For example you can use this as below.

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