1

我在我的应用程序的多个视图控制器中继承了一个带有按钮的视图控制器。我希望能够正确实现segues。我想要一个 if 语句,如果 viewcontroller A,然后执行 segue A,如果 B,然后 B 等等。例子:

-(IBAction)firstButtonPressed:(id)sender
{ 
    if (storyboard.viewcontroller == a) // If the current view controller Is A
    {
        [self performSegueWithIdentifier:@"segueA" sender:self];
    }
    if(storyboard.viewcontroller == b)//If the current view controller is B
    {
        [self.performSegueWithIdentifier:@"segueB" sender:self];
    }
}

我已经给出了我的视图控制器故事板 ID 并检查了使用故事板 ID,但不知道如何在代码中解决它们。

4

0 回答 0