ios - What causes grey, blurry area when pushing and popping UIViewController -


enter image description here

this grey , blurry area show when pushing or popping view controller. causes , how fix it?

try this.

-(void)viewwilldisappear:(bool)animated{    [super viewwilldisappear:animated];    [self.view setalpha:0]; } 

do not forget re set alpha when come back.

- (void) viewwillappear:(bool)animated{    [super viewwillappear:animated];    [self.view setalpha:1]; } 

Comments

Popular posts from this blog

smartface.io - Proper way to change color scheme for whole application -

Email notification in google apps script -

javascript - three.js lot of meshes optimization -