Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我多次将相同的目标/操作对添加到UIGestureRecognizer- 或就此而言 - 我会自找麻烦吗?UIControl
UIGestureRecognizer
UIControl
从苹果文档关于addTarget:action:forControlEvents:方法的苹果文档:
addTarget:action:forControlEvents:
您可以多次调用此方法,并且可以为特定事件指定多个目标-动作对。动作消息可以可选地包括作为参数的发送者和事件,以该顺序。调用此方法时,不会保留目标。
您似乎可以将多个目标动作对分配给手势识别器。因此,为了回答您的问题,我不确定在多次使用相同的目标/动作对时它是如何工作的。要么没关系,要么连续多次调用该操作。你只需要尝试。