我在应用程序中使用跨多个视图控制器的按钮继承视图控制器。我希望能够正确实现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,但我不确定如何在代码中解决它们。