use_frameworks! target "ターゲット名" pod 'Navigation-stack' end post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |configuration| configuration.build_settings['SWIFT_VERSION'] = "3.0" end end end 画面の用意 Storyboard上でNavigationControllerをEmbedして、ボタンを押したら次の画面にPushで遷移するようにしました。 これをシュミレーターで起動すると単純にPushで画面遷移をするだけの動きになります。まだ何も入れてないので、左から右へスワイプのジェスチャ

