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 - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -