How to remove UINavigationBar inner shadow in iOS 7?

前端 未结 6 513
深忆病人
深忆病人 2021-02-04 02:01

Inner shadow example

I\'m trying to put nav bar below the other one to make it look like one tall nav bar. But in iOS 7 UINavigationBar now has inner shadow on top and o

6条回答
  •  说谎
    说谎 (楼主)
    2021-02-04 02:32

    If your app support only iOS 6.0+, you can simply add below line:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    ...
    [[UINavigationBar appearance] setShadowImage:[UIImage new]];
    ...
    }
    

提交回复
热议问题