我有UIPageViewController
。一个页面只有一个按钮,另一个页面有UITextField
个按钮。当页面滚动到带有字段的视图时,我希望它becomeFirstResponder
并打开键盘。这是发生的事情:
我调用[self.locationQuery becomeFirstResponder]
ViewController的viewDidAppear
方法。但它永远不会打开键盘。
我在viewWillAppear
做了同样的事情,它看起来很简短,但很快被解雇了。
如果我在带有文字字段的页面上,并将页面拉到中途并放手(不更改页面),self.locationQuery
就可以很好地获得焦点。
似乎其他东西正在从字段中获取firstResponder状态,但我不知道什么是什么,以及为什么它只会在页面发生变化时发生(而不是在页面转向失败后显示)。有什么想法吗?
更新
我创建了一种抓取视图的方法,以查看是否有任何其他视图确实采用firstResponder(来自此问题的答案:Get the current first responder without using a private API)。结果:
当我明确地将第一响应者提供给文本字段时,该方法会报告它具有第一响应者状态。
如果不这样做,则返回null
。
现在我更加困惑了。
答案 0 :(得分:5)
我真的不明白导致我的问题的本质,但是我能够通过将调用包装在viewDidAppear
中的异步调度中来修复它:
dispatch_async(dispatch_get_main_queue(), ^{
MapManualViewController *strongSelf = weakSelf;
[strongSelf.locationQuery becomeFirstResponder];
});
答案 1 :(得分:0)
这个人偷走了我生命中的几个小时。这是Swift 3.x实现。
DispatchQueue.main.async(execute: {() -> Void in
let strongSelf: MapManualViewController = self
strongSelf. textField.becomeFirstResponder()
})
我也把它放在viewDidAppear