Skip to main content

RtkClockView

Overview​

This view is used to show elapsed time for the meeting in the format Hours:Minute:Seconds.

Topics:​

Creating a clock view​

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

Creates a RtkClockView for meeting passed.

Parameters:​

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

private lazy var clockView: RtkClockView = {
let label = RtkClockView(meeting: self.meeting)
label.textAlignment = .left
return label
}()