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

c++ - Difference between pre and post decrement in recursive function argument -

php - How can I echo out this array? -

javascript - IE11 incompatibility with jQuery's 'readonly'? -