gpt4 book ai didi

ios - ios中sendEvent和Send Action的区别

转载 作者:可可西里 更新时间:2023-11-01 05:34:13 24 4
gpt4 key购买 nike

我正在尝试拦截 iOS UI 事件,我发现可以使用 sendEvent 来做到这一点。我还尝试使用 sendAction:to:from:forEvent 拦截 UI 事件。

我想知道这两种方法有什么区别。 sendAction:to:from:forEvent 是否更高效?

最佳答案

也许这对你有帮助

sendAction:to:from:forEvent:

将选择器标识的 Action 消息发送到指定的目标

- (BOOL)sendAction:(SEL)action
to:(id)target
from:(id)sender
forEvent:(UIEvent *)event

action: 标识操作方法的选择器。有关允许的选择器形式的信息,请参阅讨论。

target: 接收 Action 消息的对象。如果 target 为 nil,应用程序会将消息发送给第一响应者,从那里沿着响应者链向上推进,直到它被处理。

sender: 发送操作消息的对象。默认发送者是调用此方法的 UIControl 对象。

事件:一个 UIEvent 对象,它封装有关发起操作消息的事件的信息。

- (void)sendEvent:(UIEvent *)event

向应用中适当的响应者对象派发事件。

事件:UIEvent 对象封装了有关事件的信息,包括涉及的触摸。

看看这个:https://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UIApplication_Class/index.html#//apple_ref/occ/instm/UIApplication/sendEvent

关于ios - ios中sendEvent和Send Action的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26112926/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com