1

我有带有 5 个按钮的标签栏。在 5 个选项卡中,2 个是表视图,它使用导航控制器在单击单元格时显示子视图。在标签栏上方,在每个视图中,我使用“Admob”为广告留出了一些空间。我正在使用 IB 添加广告。但是当它到达“adMobAd = [AdMobView requestAdWithDelegate:self];”时它会给出 EXC_BAD_ACCESS 在 AdViewController.m 中

我正在使用以下代码行将视图添加到选项卡栏视图。在我的代码中,我只是将广告添加到 LatestNews。有人可以帮我解决这个问题。

UINavigationController *localNavigationController;

// create tab bar controller and array to hold the view controllers
tabBarController = [[UITabBarController alloc] init];
NSMutableArray *localControllersArray = [[NSMutableArray alloc] initWithCapacity:5];

// setup the first view controller (Root view controller)
LatestNews* latestNewsController;
latestNewsController = [[LatestNews alloc] initWithTabBar];



 // create the nav controller and add the root view controller as its first view
  localNavigationController = [[UINavigationController alloc] initWithRootViewController:latestNewsController];

  // add the new nav controller (with the root view controller inside it)
  // to the array of controllers
  [localControllersArray addObject:localNavigationController];

  // release since we are done with this for now
  [localNavigationController release];
  [latestNewsController release];

  // setup the second view controller just like the first
  Forums* forumsController;
  forumsController = [[Forums alloc] initWithTabBar];

  localNavigationController = [[UINavigationController alloc] initWithRootViewController:forumsController];
  [localControllersArray addObject:localNavigationController];
  [localNavigationController release];
  [forumsController release];

 RecipeList* recipesController = [[RecipeList alloc] initWithTabBar];
 localNavigationController = [[UINavigationController alloc] initWithRootViewController:recipesController];
 [localControllersArray addObject:localNavigationController];
 [localNavigationController release];
 [recipesController release];

 //Setup Connect view
 Connect* cnt = [[Connect alloc] initWithTabBar];
 [localControllersArray addObject:cnt];
 [cnt release];

 //Setup Subscribe View
 Subscribe* scribe = [[Subscribe alloc] initWithTabBar];
 [localControllersArray addObject:scribe];
 [scribe release];

  // load up our tab bar controller with the view controllers
  tabBarController.viewControllers = localControllersArray;

  [localControllersArray release];
  [window addSubview:tabBarController.view];
  [window makeKeyAndVisible]; 
4

1 回答 1

0

EXC_BAD_ACCESS 可能是因为控制器中的广告视图设置为 nil。

检查您是否已将 Interface Builder 中的 AdMob 视图附加到视图控制器中的视图属性。

于 2010-03-01T15:32:41.557 回答