[TIMOB-11944] iOS: Accessibility - Hint text is not read aloud for textfield.
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Not Our Bug |
Resolution Date | 2012-12-04T19:18:40.000+0000 |
Affected Version/s | Release 3.0.0 |
Fix Version/s | 2012 Sprint 25, 2012 Sprint 25 Core |
Components | iOS |
Labels | look1, qe-ios100112 |
Reporter | Anshu Mittal |
Assignee | Max Stepanov |
Created | 2012-12-04T10:14:30.000+0000 |
Updated | 2017-03-29T00:52:41.000+0000 |
Description
Hint text is not read aloud for textfield.
Steps to reproduce:
1. Create an app using the code below.
2. Touch the textfield.
Actual:
Hint is not read aloud.
Expected:
Hint should be read aloud.
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var Textfield1 = Ti.UI.createTextField({
accessibilityLabel: "Textfield1",
accessibilityValue: "Value1.",
accessibilityHint: "Hint1",
top:50,
width:150,
borderWidth:2,
borderColor:'black'
});
win1.add(Textfield1);
win1.open();
Either iOS bug or expected behavior. Reproducible with simple native test case.
Closing ticket as the issue is not our bug.