ios - shadow in navigationbar when pushing -


please help. when pushing view controller navigation bar shadow. there way remove shadow, please?

i used push/pop animations yes. tried

[uiview animatewithduration:1.2               animations:^{                  self.view.frame = cgrectmake(320, 0, 320, 480);  }]; 

but nothing.

thank you.

there tone of ways modify navigation bar appearance, can see examples here: www.appcoda.com/customize-navigation-status-bar-ios-7

in particular case, can set empty image navigation bar shadow image:

[uinavigationbar appearance].shadowimage = [uiimage new]; 

Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -