File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
WordPress/Classes/Utility Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ struct EditableTextRow: ImmuTableRow {
93
93
func configureCell( _ cell: UITableViewCell ) {
94
94
cell. textLabel? . text = title
95
95
cell. detailTextLabel? . text = value
96
+ cell. accessibilityLabel = title
97
+ cell. accessibilityHint = value
96
98
cell. accessoryType = . disclosureIndicator
97
99
if accessoryImage != nil {
98
100
cell. accessoryView = UIImageView ( image: accessoryImage)
@@ -129,6 +131,9 @@ struct TextRow: ImmuTableRow {
129
131
func configureCell( _ cell: UITableViewCell ) {
130
132
cell. textLabel? . text = title
131
133
cell. detailTextLabel? . text = value
134
+ cell. accessibilityLabel = title
135
+ cell. accessibilityHint = value
136
+
132
137
cell. selectionStyle = . none
133
138
134
139
WPStyleGuide . configureTableViewCell ( cell)
You can’t perform that action at this time.
0 commit comments