菜鸟教程小白 发表于 2022-12-11 21:54:11

iphone - 如何以编程方式取消 segue 并保持在同一 View 中


                                            <p><p>我想知道当某些条件为假时我们如何取消程序中的转场?</p>

<p>下面是我的代码片段:</p>

<pre><code>if ()
{   
    NSFetchRequest *request = [ init];
    NSEntityDescription *entity = ;
    NSPredicate *predicate = ;
    ;
    ;
    NSError *anyError=Nil;
    NSArray *fetchedObjects = ;
    if ( )
    {
      useridentered = _loginTextfield.text;
      passwordentered = _passwordTextField.text;

      InformationTVC *informationTVC = segue.destinationViewController;
      informationTVC.managedObjectContext = self.managedObjectContext;            
    }
    else
    {
       /*want to put my cancel the segue and remain in the login view */
    }
}
</code></pre>

<p>如果有人可以指导我,那将是一个很大的帮助。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>查看此线程:
<a href="https://stackoverflow.com/questions/7942942/conditional-segue-performed-on-tap-on-uitableviewcell" rel="noreferrer noopener nofollow">Conditional segue performed on tap on UITableViewCell</a> </p>

<p>基本上不是将您的 segue 直接链接到按钮,而是将其放在 ViewController 之间,并将按钮链接到 IBAction,该 IBAction 将有条件地调用函数 performSegueWithIdentifier</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何以编程方式取消 segue 并保持在同一 View 中,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9661190/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9661190/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何以编程方式取消 segue 并保持在同一 View 中