Attualmente sto usando questo UIAlertView per fare un popup di login,UIAlertView: UIAlertViewStyleSecureTextInput: Tastiera numerica
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Restricted"
message:@"Please Enter Code to Enable Fields"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Login"
, nil];
alert.alertViewStyle = UIAlertViewStyleSecureTextInput;
[alert show];
Tuttavia vorrei l'input di testo da una tastiera numerica anziché la tastiera normale
c'è un modo semplice per fare questo, o devo guardare nella creazione di un UIAleartView personalizzato
add al vostro file * .h –