2016-07-24 73 views
1

由於瓦說,我只是需要找到一種方法,使無形的導航欄的下邊框像下面的照片:製作的導航欄邊框隱形

enter image description here

任何人都可以幫我嗎?

+1

http://stackoverflow.com/questions/19226965/how-to-hide-ios7-uinavigationbar-1px-bottom-line –

+0

好吧,看來我需要什麼,但我不能譖迅速,你能幫助我嗎? –

回答

2

這是從link的代碼,只需在您的AppDelegate.swift 中添加此代碼以使其成爲全局代碼。

UINavigationBar.appearance().setBackgroundImage(
    UIImage(), 
    forBarPosition: .Any, 
    barMetrics: .Default) 

UINavigationBar.appearance().shadowImage = UIImage() 
+0

好吧,我也是在控制器self.navigationController試過這種.navigationBar.setBackgroundImage(UIImage的(),forBarMetrics:.DEFAULT)? self.navigationController .navigationBar.shadowImage = UIImage的() 但您的解決方案是更好? –