I'm generating a banner in a tableview with revmob, which seems to be the one that crashes my app. The crash happens while navigating in and out several times to the tableview that contains the banner, using 3g. I generate it this way in viewDidLoad, in a view I prepared for it:
//Revmob banner
RevMobBannerView *ad = [[RevMobAds session] bannerView];
ad.delegate = self;
self.banner.delegate = self;
[ad loadAd];
[ad setFrame:CGRectMake(0, 0, self.view.frame.size.width, 44)];
[self.tableView addSubview:ad];
This is the crash:
Any ideas?