L'application iOS se bloque randomment après l'intégration de revmob

Je travaille sur une application qui fonctionne bien auparavant. Je viens d'intégrer le revmob dans l'application. Ci-dessous le code que j'ai implémenté dans le délégué de l'application

- (void)showBannerWindow { self.bannerWindow = [[RevMobAds session] banner]; [self.bannerWindow loadWithSuccessHandler:^(RevMobBanner *banner) { [banner showAd]; [self revmobAdDidReceive]; } andLoadFailHandler:^(RevMobBanner *banner, NSError *error) { [self revmobAdDidFailWithError:error]; } onClickHandler:^(RevMobBanner *banner) { [self revmobUserClickedInTheAd];}]; } -(void)removeBannerWindow { [self.bannerWindow hideAd]; } 

J'utilise cette méthode de délégué d'application dans le controller différent. Je me cache juste et montrant les bannières publicitaires revmobwindow sur push et pop.

 MyAppDelegate *appDelegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate]; [appDelegate showBannerWindow]; 

Maintenant, l'application se bloque randomment chaque fois que je reçois des erreurs avec "setStatus" comme suit.

 Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CALayer setStatus:]: unrecognized selector sent to instance 0xac51e40' Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSURL setStatus:]: unrecognized selector sent to instance 0xafa3530' 

Cela ressemble à un bug sur le SDK RevMob ( stackoverflow.com/q/21333170/634185 )