菜鸟教程小白 发表于 2022-12-12 11:44:51

ios - `tap` 函数如何被忽略?


                                            <p><p>关注 Apple 的 <a href="https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson4.html#//apple_ref/doc/uid/TP40015214-CH6-SW1" rel="noreferrer noopener nofollow">Guide to build a MealKeeper app</a> ,我能够创建一个文本字段和一个 ImageView 。在 ImageView 顶部拖放 <code>UITapGestureRecognizer</code> 后,我添加了代码以通过使文本字段退出来隐藏键盘。
<a href="/image/8ekiw.png" rel="noreferrer noopener nofollow"><img src="/image/8ekiw.png" alt="MealKeeper"/></a> </p>

<p>当我在模拟器中运行此代码时,我首先单击文本字段,出现键盘。
然后我点击 ImageView ,键盘没有隐藏。</p>

<p><code>tap</code> 函数如何被忽略?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要将手势添加到您的 imageview,为您的 imageview 创建一个 IBOutlet 并将以下内容添加到“viewDidLoad”。</p>

<pre><code>let tapGestureRecognizer = UITapGestureRecognizer(target:self, action:Selector(&#34;tap:&#34;))
imageView.userInteractionEnabled = true
imageView.addGestureRecognizer(tapGestureRecognizer)
</code></pre>

<p>祝你好运。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -`tap` 函数如何被忽略?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38445149/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38445149/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - `tap` 函数如何被忽略?