unity3d - Related to the default iOS Keyboard that comes out in Input Filed(available in UI System) -


i working on app ios platform. have input field available in new ui system , every time white classic keyboard comes out take input. want display keyboard black semi-transparent background. can me out this?

i tried touchscreenkeyboard.open("", touchscreenkeyboardtype.default, false, false, true, true); t opens black semi-transparent background keyboard when hit input field again classic white keyboard comes.

i want black semi-transparent background keyboard default keyboard.

thank helping.

finally got answer own question.

open project in xcode. open classes folder. inside open ui folder. inside open file keyboard.mm

classes>ui folder>keyboard.mm

[we can see uikeyboardappearance selection] http://i.stack.imgur.com/ykr7n.png

in here can see 2 type of keyboards

1.uikeyboardappearancedefault

2.uikeyboardappearancealert

and below there line decides type of keyboard should appear

keyboardappearances[alert ? 1 : 0],

just change order of keyboard appearance according convenience

this cheap solution. should change value of alert bool wherever method being called

[see unitykeyboard_show method]

http://i.stack.imgur.com/kjnl6.png


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -