Hi,
How do i reset the UIInput to it's default settings when used? My input label has a default text, and when tapped this default text is removed and the user can type it's name. But when I return to the UIInput for the 2nd user creation the default text is gone and the text the first user typed is still there. I tried the following:
inputLabel.text = defaultInputText
(which is a string var with the default text)
but then the color isn't grey (the same as the default text when never typed in the UIInput). So next step was:
inputLabel.color = Color.grey;
That works but now when the 2nd user taps on the UIInput field it doesn't clear it, instead the labeltext is the same as the defaulttext so you have to backspace the whole text