Edge flicker when transitioning between screens ios7
flicker, ios, ios7, objective-c, xcode5
Solution
I figured out the issue. I had to set `clipsToBounds` to `YES` on my views. This fixes the problem.
Problem
After upgrading to xcode 5, I notice there is a flicker on the edge of the screen when transitioning between two screen. The flicker shows up as a vertical white line on the edge of the frame. This only appears to be happening on ios7. The transition that I have between the two screens is via a storyboard segue. UPDATE: I fixed the issue by adding: self.view.clipsToBounds = YES; to my views.