We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b1e7e commit dfdbdb8Copy full SHA for dfdbdb8
Sources/AnalyticsLive/Signals/AutoTracking/UIKit/SignalUIApplication.swift
@@ -56,6 +56,7 @@ extension UIApplication {
56
switch touch.view {
57
case let v as UIButton:
58
title = v.accessibilityLabel ?? v.currentTitle
59
+ #if !os(tvOS)
60
case let v as UISlider:
61
title = v.accessibilityLabel
62
data = ["value": v.value]
@@ -65,6 +66,7 @@ extension UIApplication {
65
66
case let v as UISwitch:
67
68
data = ["value": v.isOn]
69
+ #endif
70
case let v as UITextField:
71
title = v.accessibilityLabel ?? v.placeholder
72
let text = v.isSecureTextEntry ? "" : (v.text ?? "")
0 commit comments