swift #responder

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift #responder相关的知识,希望对你有一定的参考价值。

“If you’re in a situation where your iOS app has multiple UITextField instances lined up, users expect to be able to move between them by pressing Next/Return on their on-screen keyboard. There is no built-in way of making this happen, so we need to write code ourselves using one of several approaches.

The easiest approach is using view tags: give your text fields incrementing tag numbers, then make them all point to a common delegate – it might be your view controller, but it doesn’t need to be.

Once that’s done you can use the becomeFirstResponder() and resignFirstResponder() methods to manipulate which view is in control like this:

func textFieldShouldReturn(_ textField: UITextField) -> Bool {
    let nextTag = textField.tag + 1

    if let nextResponder = textField.superview?.viewWithTag(nextTag) {
        nextResponder.becomeFirstResponder()
    } else {
        textField.resignFirstResponder()
    }

    return true
}”

“Note: If you ever need to force the first responder to resign itself and aren’t sure which text field is in control, it’s easier to use view.endEditing(true).

The other task you might want to do is find the view controller that is responsible for a particular view, usually to communicate something important. This is as easy as walking the responder chain looking for the first UIViewController you find, like this:

func findViewController() -> UIViewController? {
    if let nextResponder = self.next as? UIViewController {
        return nextResponder
    } else if let nextResponder = self.next as? UIView {
        return nextResponder.findViewController()
    } else {
        return nil”

Excerpt From: Paul Hudson. “Swift Design Patterns.” Apple Books. 

以上是关于swift #responder的主要内容,如果未能解决你的问题,请参考以下文章

Responder探测内网获取域控权限总结

respond.js

Respond.js

respond_with 和命名空间

kibana启动报错 Elasticsearch cluster did not respond with license information

respond.js有什么作用?