App启动展示广告效果

2016-08-24  本文已影响39人  Style_伟
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showAdDetail:) name:BBLaunchAdDetailDisplayNotification object:nil];
    NSString *path = @"http://mg.soupingguo.com/bizhi/big/10/258/043/10258043.jpg";
    [BBLaunchAdMonitor showAdAtPath:path
                             onView:self.window.rootViewController.view
                       timeInterval:5.
                   detailParameters:@{@"carId":@(12345), @"name":@"奥迪-品质生活"}];
    return YES;
}
- (void)showAdDetail:(NSNotification *)noti
{
    NSLog(@"detail parameters:%@", noti.object);
}
上一篇下一篇

猜你喜欢

热点阅读