Можно ли программно изменить тип клавиатуры поля uitext, чтобы было возможно что-то подобное:
if(user is prompted for numeric input only)
    [textField setKeyboardType: @"Number Pad"];
if(user is prompted for alphanumeric input)
    [textField setKeyboardType: @"Default"];
