Shared iAd banner for UITabBarController based app using XCode 4 with storyboard

前端 未结 2 1075
谎友^
谎友^ 2020-12-04 01:53

Storyboard iAd Tab Bar Controller sample project

1: Download sample project for Xcode 4.2

2: Make the banner visible above the Tab Bar from every view

<
2条回答
  •  爱一瞬间的悲伤
    2020-12-04 02:30

    Before we try anything drastic, try putting this code at the bottom of your appDidFinishLaunchingWithOptions, just before your return YES; call:

    self.window.rootViewController = tabBarController;
    [self.window makeKeyAndVisible];
    

提交回复
热议问题