Как сказал Пиво!
Посмотрите на ваше изображение, я думаю, что это не UIToolbar с двумя UITextFields.Если вы хотите использовать UIToolbar, вы можете написать его без IB.Коды, подобные следующим:
UIToolbar *tool = [[UIToolbar alloc] initWithFrame:CGRectMake(40.0,0.0,400,180.0)];
UITextField *firstTextField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 10.0, 360.0, 60)];
firstTextField.backgroundColor = [UIColor whiteColor];
[firstTextField.layer setCornerRadius:18];
UITextField *secondTextField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 100.0, 360.0, 60)];
secondTextField.backgroundColor = [UIColor whiteColor];
[secondTextField.layer setCornerRadius:18];
secondTextField.borderStyle = UITextBorderStyleBezel;
[tool addSubview:firstTextField];
[tool addSubview:secondTextField];
[view addSubview:tool];
[tool release];
[firstTextField release];
[secondTextField release];
Вы можете изменить стиль UIToolBar и UITextFields.
Удачи!