M mattboyslim macrumors newbie Original poster Oct 6, 2008 1 0 Oct 6, 2008 #1 Is it possible to build a form field that will pop up the URL address keypad, or is it possible to open a new tab and force the URL address keypad open? Thanks in advance, Matt
Is it possible to build a form field that will pop up the URL address keypad, or is it possible to open a new tab and force the URL address keypad open? Thanks in advance, Matt
R robotspacer macrumors member Jun 25, 2007 46 0 Oct 6, 2008 #2 Something like this will make the URL keyboard appear for a given text field: aTextField.keyboardType = UIKeyboardTypeURL; Look for UITextInputTraits (and perhaps UITextField) in the docs if you need more info.
Something like this will make the URL keyboard appear for a given text field: aTextField.keyboardType = UIKeyboardTypeURL; Look for UITextInputTraits (and perhaps UITextField) in the docs if you need more info.