菜鸟教程小白 发表于 2022-12-12 18:49:42

iphone - 如何获取单个 UIBarButtonItem 的多个事件


                                            <p><p>我正在使用 UIBarButtonItem。我想在 .m 文件中获取执行 TouchUpInside 或 TouchDragInside 的事件。帮帮我。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您以编程方式创建 UIbarButtonItem,请先使用方法将 Button 添加到 UIBarButtonItem </p>

<pre><code>initWithCustomView:(UIView *)view
</code></pre>

<p>如果您使用的是 nib 文件,则只需将按钮拖到 <code>UIbarButtonItem</code> 上,然后获取 UIButton 的引用导出。</p>

<p>然后为这两个事件添加目标应该可以工作。</p>

<pre><code>;
    ;


- (void)touchUpInside:(id)sender {

}

- (void)touchUpDrag:(id)sender {

}
</code></pre>

<p>这里的 captuteButton 是 <code>UIButton</code>。添加到 <code>UIBarButtonItem</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何获取单个 UIBarButtonItem 的多个事件,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8787119/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8787119/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何获取单个 UIBarButtonItem 的多个事件