菜鸟教程小白 发表于 2022-12-13 11:37:28

ios - UIControl.sendAction 的选择器的目的是什么?


                                            <p><p>UIControl.sendAction 的选择器参数的目的是什么? UIControl.addTarget 接受选择器参数表示发送操作时要调用的函数是有道理的,但是为什么发送事件的 Controller 会指定要调用的函数呢?我缺少一些东西。对于某些上下文,这是我尝试实现的自定义按钮中的一段代码:</p>

<pre><code>override func touchesEnded(touches: Set&lt;UITouch&gt;, withEvent event: UIEvent?) {
    self.pressed = false
    if self.bounds.contains(touches.first!.locationInView(self)) {
      // sendAction(???, to: nil, forEvent: UIControlEvents.TouchUpInside)
    }

    super.touchesEnded(touches, withEvent: event)
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>它不适合你。基本上,你已经看到了幕后。现在把目光移开。系统调用此方法。你永远不应该调用它。理论上你可以覆盖它,但你永远不会这样做。</p>

<p>当<em>你</em>想发送一个控件事件对应的 Action 时,你调用<code>sendActionsForControlEvents:</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIControl.sendAction 的选择器的目的是什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33357759/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33357759/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIControl.sendAction 的选择器的目的是什么?