My layout breaks when the user clicks a input field or a selectbox and the native iphone keyboard gets visible. I thought it might be a good idea if you could disable scroll when the native keyboard is visible. Could javascript achieve that?
Thanks in advance
You can achieve this by register for recieving the notifications on
UIKeyboardDidShowNotificationandUIKeyboardDidHideNotificationin theviewDidLoadAnd implement the selectors as below
When the keyboard is about to show you will get a call in this
And when the keyboard is about to hide you will get a call here
Glad if i can see this helps you in someways. Happy day.