菜鸟教程小白 发表于 2022-12-12 19:03:31

iphone - 如何使用滚动 Action 从 subview Controller 中获取父 View Controller ?


                                            <p><p>我有两个 UIViewController,分别命名为 <code>ViewControllerA 和 ViewControllerB</code>。 ViewControllerA 是父类,ViewControllerB 是子类,由 ViewControllerA 类中的 <code>;</code> 查看。在 ViewControllerB 类中,我隐藏了 NavigationBar。在按钮操作中,我编写了从 ViewControllerB <code>;</code> 来的 ViewControllerA。现在,我想使用交换操作(滚动到上一个屏幕)而不是使用 UIButton 从 ViewControllerB 来 ViewControllerA。我怎样才能做到这一点?谁能给我任何建议或想法?提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在子 Controller 中使用它</p>

<pre><code>- (void)viewDidLoad
{   
    UISwipeGestureRecognizer*recognizer = [ initWithTarget:self action:@selector(handleSwipeFrom:)];
    ;
    [ addGestureRecognizer:recognizer];
    ;
    ;
}

-(void)handleSwipeFrom:(UISwipeGestureRecognizer *)recognizer
{
    ;
    NSLog(@&#34;Swipe received.&#34;);
}
</code></pre>

<p>根据需要使用方向..</p>

<p>快乐编码...</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何使用滚动 Action 从 subviewController 中获取父 ViewController ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8999090/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8999090/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何使用滚动 Action 从 subview Controller 中获取父 View Controller ?