代码集成支持Block、Delegate:
//设置启动页广告图片的url
NSString *imgUrlString =@"";
//初始化启动页广告(初始化后,自动添加至视图,不用手动添加)
JWLaunchAd *launchAd = [JWLaunchAd initImageWithURL:CGRectMake(0, 0,self.window.bounds.size.width, self.window.bounds.size.height-150) strUrl:imgUrlString adDuration:10.0 options:JWWebImageDefault result:^(UIImage *image, NSURL *url) {
NSLog(@"%@", url);
}];
//是否隐藏跳过按钮(默认显示)
//广告点击事件
launchAd.clickBlock = ^(){
NSString *url = @"https://www.baidu.com";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
};
评论0
最新资源