iPhoneKeyboard TextField(custom style) on iOS

If I change the style of the TextField. it will change for the multi-line text boxes, not single!
I used:
TextCity = GUI.TextField (Rect (136,118,169,50), TextCity.Replace (“\ n”, “”). Replace (“\ r”, “”), 20, “TextCityNullBg”);
Fixed multi-line text. on the computer no problem. But in the ios device, it will display a multi-line text input keyboard.
1: If I must use the TextField, and to customize the style, in ios, it can display a normal single-line text input keyboard?
2: After clicking TextField display, keyboard, I can change its type? such as the numeric keypad.
3: TextField custom style arising from the bug, how to fix it?! :expressionless:

Bump~~~

Looking for info about this as well. My project just needs numeric input, and to be able to have just the number pad pop up would be nice.

http://unity3d.com/support/documentation/ScriptReference/iPhoneKeyboardType.html

I need fixed Movie play…:frowning:

iOS 18 - Apple Developer → documentation + the documentation on plugins in unity and you can have whatever you want, if you use whats provided out of the box you have limitations as its focused at exactly the usage that it is designed and documented for, not flexible alternative usages and limitations

movie, keyboard etc are trivial to do even with ObjC, so give it a go :slight_smile:

I know custom plugins with Objc,but,I can’t Objc :frowning:

Take a look : http://forum.unity3d.com/threads/80638-playmovie-and-textfield
Thanks.