元の画面は見せつつメニューとか何かしらのviewを見せたいことってあるよね こんな感じのやつ ※スタンプアプリをイメージ 背景を透過させてモーダル表示をすれば良いんだけど、ちょっと注意が必要なのでメモとして残しておく 書き方(iOS8以上、swift2.3) 親からviewを呼び出すとき let viewController = UIViewController() viewController.modalPresentationStyle = .OverCurrentContext viewController.view.backgroundColor = UIColor.clearColor() presentViewController(viewController, animated: true, completion: nil)