Portanto, o teclado numérico não vem com um botão 'Concluído' ou 'Avançar' por padrão, então eu gostaria de adicionar um. No iOS 6 e anteriores, havia alguns truques para adicionar um botão ao teclado, mas eles não parecem funcionar no iOS 7.
Primeiro eu assino o teclado mostrando notificação
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];
Então, tento adicionar um botão quando o teclado aparece:
- (void)keyboardWillShow:(NSNotification *)note
{
// create custom button
UIButton *doneButton = [UIButton buttonWithType:UIButtonTypeSystem];
doneButton.frame = CGRectMake(0, 50, 106, 53);
doneButton.adjustsImageWhenHighlighted = NO;
[doneButton setTitle:@"Done" forState:UIControlStateNormal];
[doneButton addTarget:self action:@selector(dismissKeyboard) forControlEvents:UIControlEventTouchUpInside];
// locate keyboard view
UIWindow* tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:1];
UIView* keyboard;
for(int i=0; i<[tempWindow.subviews count]; i++)
{
keyboard = [tempWindow.subviews objectAtIndex:i];
// keyboard view found; add the custom button to it
if([[keyboard description] hasPrefix:@"UIKeyboard"] == YES)
[keyboard addSubview:doneButton];
}
}
Mas o loop for não é executado porque não encontra nenhuma subvisualização. Alguma sugestão? Não consegui encontrar nenhuma solução para o iOS7, então, há uma maneira diferente de fazer isso?
Edit: Obrigado por todas as sugestões para as barras de ferramentas, mas prefiro não ir por esse caminho, pois sou muito pobre em espaço (e é meio feio).