透明な背景でUINavigationController
を表示するにはどうすればよいですか?ナビゲーションバーのない通常のビューが正常に動作しますが、私は同じコードにnavigationBar
を追加するとき、私は.clear
スクロールナビゲーションコントローラビュー透明な背景
一次ビューコントローラ
let vc = NewRquestViewController()
vc.modalPresentationStyle = .overCurrentContext
vc.mapView = self.mapView
let nvc = UINavigationController(rootViewController:vc)
self.present(nvc, animated: true, completion: nil)
2番目のビュー
view.isOpaque = false
self.view.backgroundColor = .clear
あなたはより良いアイデアを得るためにあなたの質問を精緻化できますか? –