如果在不使用按钮的情况下满足条件,我想创建一个segue,它将我从一个视图控制器带到另一个视图控制器。一旦应用程序加载第一次,就应该进行此segue。它看起来像这样:
if(condition){
//perform segue
}
我只是不知道如何实际执行segue。我怎么能这样做?
答案 0 :(得分:4)
您可以使用For i = 28 To 40
ActiveSheet.Shapes("CommandButton" & i).Caption=Range("c31").Value
Next i
方法执行此操作:
performSegueWithIdentifier:sender:
上面的代码片段假设类中的实例方法的上下文定义了标识符为if (condition) {
[self performSegueWithIdentifier:@"mySegue" sender:self];
}
的segue。
一旦应用程序加载第一次,就应该发生这种情况。
当应用程序加载时,您不需要segue。相反,您需要set the initial view controller programmatically。