Storyboard上で UIViewController のインスタンスに storyboard id を設定しておきます。 その storyboard id で指定して UIViewController のインスタンスを生成し(instantiateViewControllerWithIdentifier)、 現在のUIViewController画面の前に表示します(presentViewController)。
現在一番前に表示されている UIViewController のインスタンスを消すには dismissViewControllerAnimated(completion:)を使います。
project navigator のプロジェクト名の上でマウスを右ドラッグして "New File..." を選択します。 iOS の Source で Cocoa Touch Class を選んで Next をクリックします。 Class: には "ViewController2", Subclass of: には "UIViewController" Language: には "Swift" を選びます(クラス名は自由に選んで構いません)。 ViewController2.swift がプロジェクトに追加されます。
ViewController.swiftに追加するコード(赤字部分) |
|
ViewController2.swiftに追加するコード(赤字部分) |
|
--> |