0

这很好,但我需要它出现在某个类名“食物”中,而不是其他类。任何提示将不胜感激。

  - (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

好吧,如果您需要在某个课程中展示它,请在该课程中进行。您可以使用viewDidLoadviewDidAppearviewWillAppear实例化NSTimer.

于 2013-05-31T22:52:14.167 回答