Tipos de entrada: campos de texto

¿Por qué tipos de entrada?

Los tipos de entrada de teclado nos ayudan a obtener la entrada requerida del usuario. Elimina las claves no deseadas e incluye las necesarias. Podemos establecer el tipo de entrada que el usuario puede dar usando la propiedad de teclado de UITextField.

  • Por ejemplo: textField. keyboardType = UIKeyboardTypeDefault

Tipos de entrada de teclado

No Señor. Tipo de entrada y descripción
1

UIKeyboardTypeASCIICapable

El teclado incluye todos los caracteres ASCII estándar.

2

UIKeyboardTypeNumbersAndPunctuation

El teclado muestra los números y las puntuaciones una vez que se muestra.

3

UIKeyboardTypeURL

El teclado está optimizado para la entrada de URL.

4

UIKeyboardTypeNumberPad

El teclado se utiliza para la entrada de PIN y muestra un teclado numérico.

5

UIKeyboardTypePhonePad

El teclado está optimizado para ingresar números de teléfono.

6

UIKeyboardTypeNamePhonePad

El teclado se usa para ingresar el nombre o el número de teléfono.

7

UIKeyboardTypeEmailAddress

El teclado está optimizado para ingresar direcciones de correo electrónico.

8

UIKeyboardTypeDecimalPad

El teclado se usa para ingresar números decimales.

9

UIKeyboardTypeTwitter

El teclado está optimizado para Twitter con los símbolos @ y #.

Agregar un método personalizado addTextFieldWithDifferentKeyboard

-(void) addTextFieldWithDifferentKeyboard {

   UITextField *textField1= [[UITextField alloc]initWithFrame: 
   CGRectMake(20, 50, 280, 30)];
   textField1.delegate = self;
   textField1.borderStyle = UITextBorderStyleRoundedRect;
   textField1.placeholder = @"Default Keyboard";
   [self.view addSubview:textField1];

   UITextField *textField2 = [[UITextField alloc]initWithFrame:
   CGRectMake(20, 100, 280, 30)];
   textField2.delegate = self;
   textField2.borderStyle = UITextBorderStyleRoundedRect;
   textField2.keyboardType = UIKeyboardTypeASCIICapable;
   textField2.placeholder = @"ASCII keyboard";
   [self.view addSubview:textField2];

   UITextField *textField3 = [[UITextField alloc]initWithFrame:
   CGRectMake(20, 150, 280, 30)];
   textField3.delegate = self;
   textField3.borderStyle = UITextBorderStyleRoundedRect;
   textField3.keyboardType = UIKeyboardTypePhonePad;
   textField3.placeholder = @"Phone pad keyboard";
   [self.view addSubview:textField3];

   UITextField *textField4 = [[UITextField alloc]initWithFrame:
   CGRectMake(20, 200, 280, 30)];
   textField4.delegate = self;
   textField4.borderStyle = UITextBorderStyleRoundedRect;
   textField4.keyboardType = UIKeyboardTypeDecimalPad;
   textField4.placeholder = @"Decimal pad keyboard";
   [self.view addSubview:textField4];

   UITextField *textField5= [[UITextField alloc]initWithFrame:
   CGRectMake(20, 250, 280, 30)];
   textField5.delegate = self;
   textField5.borderStyle = UITextBorderStyleRoundedRect;
   textField5.keyboardType = UIKeyboardTypeEmailAddress;
   textField5.placeholder = @"Email keyboard";
   [self.view addSubview:textField5];

   UITextField *textField6= [[UITextField alloc]initWithFrame:
   CGRectMake(20, 300, 280, 30)];
   textField6.delegate = self;
   textField6.borderStyle = UITextBorderStyleRoundedRect;
   textField6.keyboardType = UIKeyboardTypeURL;
   textField6.placeholder = @"URL keyboard";
   [self.view addSubview:textField6];
}

Actualice viewDidLoad en ViewController.m de la siguiente manera:

(void)viewDidLoad {
   [super viewDidLoad];
   //The custom method to create textfield with different keyboard input
   [self addTextFieldWithDifferentKeyboard];
   //Do any additional setup after loading the view, typically from a nib
}

Salida

Cuando ejecutamos la aplicación, obtendremos el siguiente resultado:

Veremos diferentes teclados desplegados al seleccionar cada uno de los campos de texto.