gpt4 book ai didi

ios - 如何通过一个按钮切换到多个屏幕

转载 作者:行者123 更新时间:2023-11-28 22:38:16 24 4
gpt4 key购买 nike

我在 MacBook Pro 上使用 XCode 4.6 在 Objective-C 中编码,我想知道如何在我的 Storyboard中使用相同的按钮来连接到两个不同的屏幕,我的意思是,我想设置一个条件结构来决定当用户按下按钮时应用程序将转到哪个屏幕,例如 if(x==1) {go to view controller 1} else {go to view controller 2}

最佳答案

从 Storyboard中的 View Controller (而不是按钮)连接 segues。给按钮一个 IBAction 并在 IBAction 的实现中抛出你的 if 语句:

- (IBAction)buttonPressed:(id)sender
{
if (x == 1) {
[self performSegueWithIdentifier:@"Go to view controller 1" sender:self];
} else {
[self performSegueWithIdentifier:@"Go to view controller 2" sender:self];

}
}

关于ios - 如何通过一个按钮切换到多个屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15306620/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com