Page 1 of 1
Keyboard selection for Password in iOS
Posted: Mon Feb 07, 2011 8:37 pm
by SteveHanlan
I'm sure there are other users that need to set a default keyboard for numeric only passwords, (i.e. a PIN Number)
Steve Hanlan
(almost ready to deploy first app)
Re: Keyboard selection for Password in iOS
Posted: Thu Feb 10, 2011 9:01 pm
by SteveHanlan
Also, why does the return key on the keyboard not accept the password, (you have to go back to the answer block and tap 'OK')
This would be consistent with all other data entry.
Steve
Re: Keyboard selection for Password in iOS
Posted: Mon Feb 28, 2011 6:20 pm
by dburdan
For the iPhone keyboard use:
Code: Select all
iphoneSetKeyboardType default
iphoneSetKeyboardReturnKey done
also you can put code when the return key is clicked:
Code: Select all
on returnInField
Do something
end returnInField
on EnterInField
Do something
end EnterInField
Look in the iOS release notes for more details