xcode8.3です
ストリートボード

Storyboardの構成は上記のようになっています。
タブ1の画面1からボタンをクリックし、画面1-2に遷移します。

@IBAction func btnNext_click(_ sender: Any) {
        let next = storyboard!.instantiateViewController(withIdentifier: "SecondView")
        self.present(next,animated: true, completion: nil)
}

で、そのあと画面1-2からまたボタンをクリックし、画面1に遷移すると、タブバーが消えてしまいます。

@IBAction func btnNext_click(_ sender: Any) {
        let next = storyboard!.instantiateViewController(withIdentifier: "FirstView")
        self.present(next,animated: true, completion: nil)
}

ボタンをクリックして戻った場合でも、元のタブバーを表示するにはどのようにしたらよいのでしょうか。