Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Edge flicker when transitioning between screens ios7

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.

like image 250
Atul Bhatia Avatar asked Dec 16 '22 01:12

Atul Bhatia


1 Answers

I figured out the issue. I had to set clipsToBounds to YES on my views. This fixes the problem.

like image 106
Atul Bhatia Avatar answered Jan 04 '23 05:01

Atul Bhatia