как я могу создать фон панели навигации, чтобы увидеть фон UIImage в UITableView?

#swift #uitableview #uinavigationcontroller #uiimageview

#swift #uitableview #uinavigationcontroller #uiimageview

Вопрос:

Я хочу показать вам результаты скриншота, на котором у меня возникли проблемы с этим.

введите описание изображения здесь

but I can see the setting has like that.

enter image description here

I have tried this code to make the background clear for iOS 13 and above.

 let app = UINavigationBarAppearance()    let navigationBar = self.navigationController?.navigationBar    app.backgroundColor = .clear  app.configureWithOpaqueBackground()    app.configureWithOpaqueBackground()  app.titleTextAttributes = [.foregroundColor: UIColor.white]  app.largeTitleTextAttributes = [.foregroundColor: UIColor.white]  app.backgroundColor = .clear    self.navigationController?.navigationBar.scrollEdgeAppearance = app      navigationBar!.standardAppearance = app  navigationBar!.scrollEdgeAppearance = app  

so it does not work as well. How can I make the Navigation bar visible the UIImage that built-in UITableView?

What about add blur background in iOS 14? I can’t find it.

Let me know thanks!