Wednesday 5 December 2018

Remove bottom line in navigation bar


navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .any, barMetrics: .default)
        
navigationController?.navigationBar.shadowImage = UIImage()

Remove text from Back button in navigation bar



copy this line in where you are navigating from,  means here ( MapView Controller )

navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .plain, target: nil, action: nil)

Map View text will remove

Remove bottom line in navigation bar

navigationController ?. navigationBar . setBackgroundImage ( UIImage (), for: . any , barMetrics: . default )          navigat...