resignFirstResponder Não funciona?

Tento ocultar o teclado no iPad, mas não sei por que o resignFirstResponder não funciona. Mas o popToRoot funcionou bem.

- (BOOL)textFieldShouldReturn:(UITextField *)textField 
{
    NSString *desc = [NSString stringWithFormat:@"%@",[descTF text]];
    [textField resignFirstResponder];
    [self.navigationController popToRootViewControllerAnimated:YES];


    return YES;
}

Então você poderia me orientar o que devo fazer por favor

questionAnswers(5)

yourAnswerToTheQuestion