菜鸟教程小白 发表于 2022-12-13 13:49:57

iphone - 使用 addTarget 在 UIView 中定位 UIButton


                                            <p><p>My ViewController.m 创建一个 myUIView 的实例。
在 myUIView 中创建了一个 UIButton。 </p>

<p>一切似乎都很好,除了在 ViewController 级别捕获我使用 <strong>addTarget</strong> 的按钮按下。
按下按钮会导致崩溃,提示:<strong>“unrecognized selector sent to instance 0x6c254e0...”</strong></p>

<p>这个 addTarget 代码错了吗?非常感谢任何人的帮助。</p>

<pre><code>- (void)viewDidLoad{

&lt;UIVIew implementation etc...&gt;

;

}


- (void)myButtonIsPressed{
    NSLog(@&#34;Pressed!&#34;);
}
</code></pre>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>只需删除:在 myButtonIsPressed 之后:</p>

<pre><code>;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 使用 addTarget 在 UIView 中定位 UIButton,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10665015/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10665015/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 使用 addTarget 在 UIView 中定位 UIButton