Titanium JIRA Archive
Appcelerator Community (AC)

[AC-5657] attributedHintText (TextArea) does not work on IOS Devices

GitHub Issuen/a
TypeBug
Priorityn/a
StatusResolved
ResolutionDuplicate
Resolution Date2018-03-14T14:39:57.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsTitanium SDK & CLI
LabelsIOS, SDK7.0.2
ReporterAndreas Pingas
AssigneeShak Hossain
Created2018-03-14T13:45:52.000+0000
Updated2018-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

  1. Rene Pot 2018-03-14

JSON Source