假广告

来源:互联网 发布:淘宝直播ipad可以看吗 编辑:程序博客网 时间:2024/04/29 03:53

 UIButton *adBtn=[UIButton buttonWithType:UIButtonTypeCustom];

        [adBtn setBackgroundImage:[UIImage imageNamed:@"GoAd"] forState:UIControlStateNormal];

        adBtn.frame=CGRectMake(0, 0, 320, 50);

        [adBtn addTarget:self action:@selector(gotoPage) forControlEvents:UIControlEventTouchUpInside];

        [self.bgScrollView addSubview:adBtn];


-(void)gotoPage

{

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://gongyi.qq.com/zt/2010/children/"]];

}

0 0