[AC-5657] attributedHintText (TextArea) does not work on IOS Devices
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Resolved |
| Resolution | Duplicate |
| Resolution Date | 2018-03-14T14:39:57.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Titanium SDK & CLI |
| Labels | IOS, SDK7.0.2 |
| Reporter | Andreas Pingas |
| Assignee | Shak Hossain |
| Created | 2018-03-14T13:45:52.000+0000 |
| Updated | 2018-03-14T14:41:24.000+0000 |
Description
var win = Ti.UI.createWindow();
var titleView = Ti.UI.createTextArea({
top:0,
left:10,
right:10,
attributedHintText:Ti.UI.createAttributedString({
text:'Place',
attributes:[{
type:Ti.UI.ATTRIBUTE_FOREGROUND_COLOR,
value:'#AAA',
range:[0, ('Place').length]
}]
}),
color:'#808080'
});
win.add(titleView);
win.open();
Comments
- Rene Pot 2018-03-14