RtkParticipantCountView
Overview
Subclass of UILabel which shows count of total joined participants in a meeting.
Topics:
Creating a RtkParticipantCountView.
init(meeting: RealtimeKitClient, appearance: RtkTextAppearance = AppTheme.shared.participantCountAppearance) {
Parameters:
Required
meeting: Current ongoing meeting object.
Optional:
appearance: Any type which conforms to protocol "RtkTextAppearance"
For example you can use this as below.
public lazy var lblSubtitle: RtkParticipantCountView = {
let label = RtkParticipantCountView(meeting: self.meeting)
label.textAlignment = .left
return label
}()