菜鸟教程小白 发表于 2022-12-13 00:40:16

ios - 在后台点击隐藏键盘 - 手势引用问题


                                            <p><p>我有一个 <strong>board</strong> (UIViewController) 实例化 <strong>card</strong> 对象 (UIViewControllers)。每张卡片上都有一个<strong>texfield</strong>。为了通过单击非卡片区域(= 板 View )来移除键盘,我需要对 <strong>UITapGestureRecognizer</strong> 中指定的板的引用。这是我目前的方法。</p>

<p><strong>Board</strong> (UIViewController) 初始化卡片对象</p>

<pre><code>-(void) addCard:(id)touchEvent{
    CardViewController *card = [initItemWithText:@&#34;...&#34;];
    ;
    ;
}
</code></pre>

<p><strong>卡片</strong> (UIViewController) 在初始化时,添加点按手势识别器</p>

<pre><code>- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
...
    UITapGestureRecognizer *tapBackground = [initWithTarget:self action:@selector(tapBackground:)];
    ;
...
}
</code></pre>

<p>使用 parentViewController 方法的“背景”引用似乎不起作用。为什么?</p>

<p>我如何从卡片中引用返回到董事会以辞职卡片的第一响应者?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试将手势代码添加到 Board 而不是 Card(在 viewDidLoad 中)</p>

<pre><code>UITapGestureRecognizer *tapBackground = [initWithTarget:self action:@selector(tapBackground:)];
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在后台点击隐藏键盘 - 手势引用问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14501739/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14501739/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在后台点击隐藏键盘 - 手势引用问题