菜鸟教程小白 发表于 2022-12-13 03:26:24

UIButton点击的IOS回调


                                            <p><p>我有一个在我的应用程序的许多屏幕中使用的按钮。我想用自定义图像和按下按钮时的回调来实现一个自定义按钮。</p>

<p>我习惯了 java,但我不知道如何在 iOS 中解决这个问题。我已经阅读过关于 Category 和 Subclassing 的内容,但我仍然不确定。</p>

<p>有人有例子吗?或者什么是最好的解决方案?非常感谢任何帮助。</p>

<p>我做了什么(感谢@Aris):</p>

<p>.h 文件</p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;

@interface UIButton (MyUIButton)

+ (UIButton *)customButtonWithTarget:(id)target;

@end
</code></pre>

<p>.m 文件</p>

<pre><code>#import &#34;UIButton+MyUIButton.h&#34;

@implementation UIButton (MyUIButton)

+ (UIButton *)customButtonWithTarget:(id)target{
    UIButton *button_ = ;
    ;
    forState:UIControlStateNormal];

    [button_ addTarget:target
                action:@selector(event_button_click:)
      forControlEvents:UIControlEventTouchUpInside];

    return button_;
}

@end
</code></pre>

<p>在我的 ViewController 中:</p>

<pre><code>#import &#34;UIButton+MyUIButton.h&#34;

- (void)viewDidLoad {
    ;
UIButton *myButton = ;
    ;

}

-(void)event_button_click
{
    // code here
}
</code></pre>

<p>我收到此错误:<code>'-: unrecognized selector sent to instance 0x78e5df10'
</code></p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>子类化 UIButton 是错误的方法。您需要添加一个类别工厂方法,该方法创建一个具有您需要的属性的按钮。
扩展 JNYJ 的答案:</p>

<pre><code>+ (UIButton *)customButtonWithTarget:(id)target{
    UIButton *button_ = ;
    ;
    forState:UIControlStateNormal];

    [button_ addTarget:target
                action:@selector(event_button_click:)
      forControlEvents:UIControlEventTouchUpInside];

    return button;
}
</code></pre>

<p>您应该将此方法放在可以使用 Xcode 创建的 UIButton 类别中,然后将文件导入到创建按钮所需的所有位置。
导入类别后,您可以像这样调用方法:</p>

<p><code>;</code></p>

<p>您必须确保 <code>target</code> 实现名为 <code>event_button_click:</code> 的方法。</p>

<p>在典型场景中,Button 的目标应该是负责 View 的 viewController。如果您希望 Button 在所有 ViewControllers 上执行相同的操作,那么 ViewControllers 应该是实现公共(public)操作的 ViewController 的子类。</p>

<p>实现此目的的另一种方法是将目标设置为您知道将在整个应用程序生命周期中存在的对象。候选人可以是 <code>Application Delegate</code> 或其他单例。</p>

<p>响应 OP 的编辑:</p>

<p>您收到此错误的错误是因为选择器末尾有“:”。
这意味着该方法应采用 1 个参数。
响应按钮点击的典型方法具有以下签名:</p>

<pre><code>- (void)didTapButton:(id)sender
</code></pre>

<p>其中 <code>sender</code> 是生成事件的对象,在我们的例子中是按钮。</p>

<p>所以在你的情况下:</p>

<pre><code>-(void)event_button_click:(id)sender
{
    UIButton * myButton = sender
    //custom code
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于UIButton点击的IOS回调,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26990358/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26990358/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: UIButton点击的IOS回调