0

これはうまくいきますが、特定のクラス名「food」に表示する必要があり、他のクラスには表示されません。ヒントをいただければ幸いです。

  - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
 {

  //    [Shared instance];

  [NSTimer scheduledTimerWithTimeInterval:20 target:self selector:@selector(ad) userInfo:nil repeats:YES];
   }




      -(void)ad{
[ALInterstitialAd showOver:self.window];  
      }
4

1 に答える 1

1

特定のクラスでそれを表示する必要がある場合は、そのクラスで実行します。とを使用してviewDidLoad、をインスタンス化できます。viewDidAppearviewWillAppearNSTimer

于 2013-05-31T22:52:14.167 に答える