gpt4 book ai didi

ios - 在 IOS 中以编程方式设置 Action 监听器

转载 作者:可可西里 更新时间:2023-11-01 04:06:36 25 4
gpt4 key购买 nike

您好,我以编程方式创建了一个按钮。我会将此按钮添加到导航栏。现在我想给它添加一个 Touch Up Inside Action 监听器。我该怎么做?谢谢。

最佳答案

UIButton 是 UIControl 的子类。

创建按钮后,您需要做的就是设置按钮的目标和 Action 。即

// Create your button:
UIButton *button = // However you create your button

// Set the target, action and event for the button
[button addTarget:// the object that implements the action method, or nil if you want it to propagate up the responder chain.
action:// A selector for the method
forControlEvents:UIControlEventTouchUpInside];

关于ios - 在 IOS 中以编程方式设置 Action 监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13668981/

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