在单元测试中,我试图在 UITextField 上调用 becomeFirstResponder 方法,但我得到 NO,即它没有成为第一响应者。
代码如下所示:
UITextField *textField = [self.controller.searchBar valueForKey: @"_searchField"];
// textField = [[UITextField alloc] initWithFrame:CGRectMake(10.0, 10.0, 400.0, 44.0)];
[self.navigationController.navigationBar addSubview:textField];
textField.enabled = YES;
STAssertTrue([textField becomeFirstResponder],
@"TextField should be a first responder.");
我在这里错过了什么吗?