STORYBOARD: no contiene un controlador de vista con identificador

Sigo recibiendo el siguiente error:

Storyboard (<UIStoryboard: 0x7ebdd20>) doesn't contain a view controller 
with identifier 'drivingDetails'

Este es el código:

- (void)tableView:(UITableView *)tableView 
        didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

   UIViewController *controller =  [self.storyboard instantiateViewControllerWithIdentifier:@"drivingDetails"];
   controller.title = [[dao libraryItemAtIndex:indexPath.row] valueForKey:@"name"];
   [self.navigationController pushViewController:controller animated:YES];
}

Ya he configurado elidentifier sobre elUIStoryboard pero sigo recibiendo este error.

Respuestas a la pregunta(17)

Su respuesta a la pregunta