How to remove UINavigationBar inner shadow in iOS 7?

前端 未结 6 512
深忆病人
深忆病人 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:13

    I really shouldn't as CaptJak has pointed out but for anyone else who gets stuck:

    for (UIView *view in self.navigationController.navigationBar.subviews) {
        for (UIView *view2 in view.subviews) {
            if ([view2 isKindOfClass:[UIImageView class]]) {
                [view2 removeFromSuperview];
            }
        }
    }
    

    enter image description here

提交回复
热议问题