← Cloudflare Realtime / realtime / realtimekit / ui-kit / api-reference / ios
RtkPluginScreenShareTabButton
Tlačítko karty použité v přepínači karet pluginů a sdílení obrazovky.
Představuje jednu kartu v RtkActiveTabSelectorView.
Parametry inicializátoru
| Parametr | Typ | Povinné | Výchozí | Popis |
|---|---|---|---|---|
image |
RtkImage? |
✅ | - | Obrázek ikony pro tlačítko karty |
title |
String |
❌ | "" |
Text názvu pro tlačítko karty |
id |
String |
❌ | "" |
Jedinečný identifikátor tlačítka karty |
appearance |
RtkPluginScreenShareTabButtonAppearance |
❌ | - | Konfigurace vzhledu tlačítka karty |
Příklady použití
Základní použití
import RealtimeKitUI
let tabButton = RtkPluginScreenShareTabButton(
image: RtkImage(image: UIImage(systemName: "square.and.arrow.up")),
title: "Screen Share"
)S identifikátorem
import RealtimeKitUI
let tabButton = RtkPluginScreenShareTabButton(
image: RtkImage(image: UIImage(systemName: "pencil.tip")),
title: "Whiteboard",
id: "whiteboard-plugin"
)