How to remove UINavigationBar and UISearchBar hairline

前端 未结 5 1034
执念已碎
执念已碎 2020-12-15 14:33

I am creating an iOS 7 app in which I\'d like to have a SearchBar right bellow the NavigationBar, and I wanted them both to look like a single piece. Therefore I need to tin

5条回答
  •  爱一瞬间的悲伤
    2020-12-15 14:40

    use following code in AppDelegate (didFinishLaunchingWithOptions)

    Swift :

    UINavigationBar.appearance().setBackgroundImage(UIImage(), for: .any, barMetrics: .default) 
    UINavigationBar.appearance().shadowImage = UIImage() 
    

    Objective c :

        [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init]
                                      forBarPosition:UIBarPositionAny
                                          barMetrics:UIBarMetricsDefault];
    
    [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
    

提交回复
热议问题