Password field shows password when active on iPhone

Hi!

I'm trying to make a Twitter login with the below code but when the user clicks on the password field the entire password is shown instead of the *'s. Once they click done on the iOS input box then it shows as stars but how do I get it to constantly show as stars in the field within Unity (not just the iOS input field).

`passwordToEdit = GUI.PasswordField (Rect (218, 234, width, buttonHeight), passwordToEdit, "*"[0], 25);`

Thanks!

Hi,

see here for a similar question: GUILayout.PasswordField() shows whole password when running on iOS before changing characters!?! - Unity Answers

and here for a workaround I found for this bug (4th post): http://forum.unity3d.com/threads/65337-GUI.PasswordField-issue