Quote:
Originally Posted by apatsufas
Unless you have access to their webServers you can't.
|
No, I don't have access to their sites. Just loading their webpage. When i tap the username tet field i am able to get the notification for keyboard(like uikeyboardwillshow).In the notification callback method, i ma getting the following info
UIKeyboardAnimationCurveUserInfoKey = 0;
UIKeyboardAnimationDurationUserInfoKey = "0.25";
UIKeyboardBoundsUserInfoKey = "NSRect: {{0, 0}, {1024, 396}}";
UIKeyboardCenterBeginUserInfoKey = "NSPoint: {512, 966}";
UIKeyboardCenterEndUserInfoKey = "NSPoint: {512, 570}";
UIKeyboardFrameBeginUserInfoKey = "NSRect: {{768, 0}, {396, 1024}}";
UIKeyboardFrameChangedByUserInteraction = 0;
UIKeyboardFrameEndUserInfoKey = "NSRect: {{372, 0}, {396, 1024}}"
Is there any way to work on keyboard instead of textfields. My intention is to disable auto capitalization and auto suggesstion. Thanks