如何在iOS应用程序开发中单击按钮时打开另一个视图?

时间:2018-03-24 22:52:00

标签: swift4

我正在尝试构建一个应用程序,并且我希望在单击按钮后打开另一个视图。我已经找到了答案,但没有提出任何问题。我已经完成了按钮,但我不知道如何让另一个视图显示出来。该视图应该是应用程序中的另一个视图。我只是xCode的初学者。感谢。

我目前正在使用xCode 9和swift 4.谢谢。

1 个答案:

答案 0 :(得分:0)

You can approach this either using the storyboard or programmatically. Using the storyboard, you can ctrl-drag from the button to the other view controller and the segue will be wired up for you, like so:enter image description here

If you aren't using storyboards at all, you can use the .show method of the ViewController in the button action. Apple has a good guide on segues.