Dark shadow on navigation bar during segue transition after upgrading to Xcode 5.1 and iOS 7.1

Nihat picture Nihat · Mar 14, 2014 · Viewed 26k times · Source

When I am navigating back & forth between parent and child controllers in a master - detail navigation controller, i see a dark shadow on the right side of navigation bar at top. It started after I upgraded to Xcode 5.1. It feels rough and distracting. How can I get rid of it?

Answer

nonamelive picture nonamelive · Aug 21, 2014
self.navigationController.view.backgroundColor = [UIColor whiteColor];

I solved this problem by setting the background color of the navigation controller's view.