Pause ad refresh admob ios -
how can pause ad when user has selected tab? have tabbed ios app, noticed ads refreshing when tab in isn't visible. i've looked on place , haven't found pause auto refresh. measure remove , nullify ad when user leaves tab?
i found out removing gadbannerview superview (without releasing it, removing , keeping safe strong property) prevents ad refreshing, i'm doing this:
-(void)viewwillappear:(bool)animated{ [super viewwillappear:animated]; [self.view addsubview:self.adview]; } -(void)viewwilldisappear:(bool)animated{ [super viewwilldisappear:animated]; [self.adview removefromsuperview]; }
Comments
Post a Comment