swiftmemomemo @ ウィキ
UIViewController
最終更新:
swiftmemomemo
-
view
画面消去
self.dismiss(animated: true, completion: nil)
NavigationBarのタイトル変更
// タイトル可変 self.title = "xxxx" // タイトル固定 self.navigationItem.title = "xxxx"
NavigationBarのバックボタンのタイトル変更
// 次の画面のBackボタンを「戻る」に変更
self.navigationItem.backBarButtonItem = UIBarButtonItem(
title: "戻る",
style: .plain,
target: nil,
action: nil
)