iOS实现动态的开屏广告示例代码

 更新时间:2016年09月07日 15:34:21   作者:小白yige  
启动图是在iOS开发过程中必不可少的一个部分,很多app在启动图之后会有一张自定义的开屏广告图,但是有的时候需要让启动图看起来就是一个广告,而且还要这个广告里面会动,iOS的启动图只能是静态的,而且固定,为了实现看起来的动画效果,只能进行伪造了。下面来一起看看

一、实现效果图

二、实现思路:

用一个固定的png图片左启动图,应该和广告视图需要进行动画的期初的位置一致,当启动图消失的时候,呈现出图片,实际遇到的困难是,因为广告图片是从网络请求加载的,当时把广告视图放在了请求数据的块里面,广告出现的时候会闪一下,放在外面就没事了。

三、实现示例

1.广告的头文件

// XBAdvertView.h 
// scoreCount 
// 
// Created by 王国栋 on 15/12/22. 
// Copyright © 2015年 xiaobai. All rights reserved. 
// 
 
#import <UIKit/UIKit.h> 
@protocol XBAdvertViewDelegate <NSObject> 
/** 
 * 图片被点击的代理 
 */ 
-(void)adViewClick; 
@end 
@interface XBAdvertView : UIView 
 
 
@property (nonatomic,weak) id<XBAdvertViewDelegate> delegate; 
 
@property (nonatomic,strong) UIImage* adimage; 
 
@end 

2.广告的m文件

// 
// XBAdvertView.m 
// scoreCount 
// 
// Created by 王国栋 on 15/12/22. 
// Copyright © 2015年 xiaobai. All rights reserved. 
// 
 
#import "XBAdvertView.h" 
#import "MacroDefinition.h" 
#import "UIDeviceHardware.h" 
 
 
#define kScreenW [UIScreen mainScreen].bounds.size.width 
#define kScreenH [UIScreen mainScreen].bounds.size.height 
 
#define AppViewOriginCenterY kScreenH*0.335 
#define AdvertViewRatio 0.75 
 
#define AppViewObjCenterY (kScreenH*AdvertViewRatio+35) 
 
#define AppNameObjCenterY AppViewObjCenterY+30 
#define AppNameOriginCenterY kScreenH+20 
 
#define AppImageViewW 60/0.6 
#define AppImageViewH AppImageViewW 
 
@interface XBAdvertView() 
 
///** 
// * 广告的图片 
// */ 
//@property (nonatomic,strong) UIImage * advertImage; 
///** 
// * app图标 
// */ 
//@property (nonatomic,strong) UIImage* appImage; 
// 
//@property (nonatomic,strong)UILabel * appName; 
// 
///** 
// * 图片的URL 
// */ 
//@property (nonatomic,strong) NSString* picURL; 
// 
///** 
// * 代理类去处理点击的方法 
// */ 
 
@property (nonatomic,strong) UIImageView * advertImv; 
@property (nonatomic,strong) UIImageView * appImv; 
@property (nonatomic,strong) UILabel * appName; 
@property (nonatomic,strong) UILabel * appPinyin; 
@property (nonatomic,strong) UIImage *image; 
@end 
@implementation XBAdvertView 
 
- (void)setAdimage:(UIImage *)adimage 
{ 
 self.advertImv.image = adimage; 
  
 [UIView animateWithDuration:1.0 delay:0.5 options:UIViewAnimationOptionCurveEaseIn animations:^{ 
  UIDeviceResolution ios_Model = [UIDeviceHardware currentResolution]; //获取设备尺寸 
  if (ios_Model==UIDevice_iPhoneHiRes||ios_Model==UIDevice_iPhoneStandardRes||ios_Model==UIDevice_iPhoneTallerHiRes){ 
   self.appImv.center = CGPointMake(self.appImv.center.x, SCREEN_HEIGHT-108+20); 
    
  }else{ 
   self.appImv.center = CGPointMake(self.appImv.center.x, SCREEN_HEIGHT-108+25); 
    
  } 
  self.appName.center= CGPointMake(self.appName.center.x, SCREEN_HEIGHT-108+self.image.size.height/2+5+15); 
  self.appImv.transform = CGAffineTransformMakeScale(0.6, 0.6); 
  self.appPinyin.center = CGPointMake(self.appPinyin.center.x,SCREEN_HEIGHT-15-10); 
  //self.appPinyin.frame = CGRectMake(0, CGRectGetMaxY(self.appName.frame)+5, SCREEN_WIDTH, 20); 
 } completion:^(BOOL finished) { 
   
  //  [UIView animateWithDuration:1.0 animations:^{ 
  // 
  //   self.advertImv.alpha=1.0f; 
  //  }]; 
  self.advertImv.alpha=1.0f; 
  [UIView animateWithDuration:3.0 animations:^{ 
    
   self.advertImv.alpha=1.0f; 
    
  } completion:^(BOOL finished) { 
    
   [NSThread sleepForTimeInterval:2.0]; 
    
   [self removeFromSuperview]; 
    
    
  }]; 
 }]; 
 
} 
- (instancetype)initWithFrame:(CGRect)frame 
{ 
  
 NSLog(@"initWithFrame"); 
 if (self = [super initWithFrame:frame]) { 
   
  //设置广告 
  self.backgroundColor = [UIColor whiteColor]; 
  self.advertImv = [[UIImageView alloc]init]; 
  self.advertImv.backgroundColor = [UIColor grayColor]; 
  self.advertImv.contentMode=UIViewContentModeScaleToFill; 
  self.advertImv.alpha = 0;//设置为透明 
  [self addSubview:self.advertImv]; 
  //添加手势 
  UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(click)]; 
  tap.numberOfTapsRequired=1; 
  [self.advertImv addGestureRecognizer:tap]; 
   
  //设置app图标 
  self.appImv =[[ UIImageView alloc]init]; 
  self.appImv.image = [UIImage imageNamed:@"iphone6p"]; 
  [self addSubview:self.appImv]; 
  //设置app 的名字 
  self.appName = [[UILabel alloc]init]; 
  self.appName.text = @"乐校"; 
  self.appName.font = UIFont(18); 
  self.appName.textColor = BLUE_22C4FF; 
  self.appName.textAlignment=NSTextAlignmentCenter; 
  [self addSubview:self.appName]; 
  self.appPinyin =[[UILabel alloc]init]; 
  self.appPinyin.textAlignment = NSTextAlignmentCenter; 
  self.appPinyin.font = UIFont(13); 
  self.appPinyin.textColor = BLUE_22C4FF; 
  self.appPinyin.text =@"使大学生活更精彩"; 
  [self addSubview:self.appPinyin]; 
   
  //设置广告尺寸 
   
  UIDeviceResolution ios_Model = [UIDeviceHardware currentResolution]; //获取设备尺寸 
  if (ios_Model==UIDevice_iPhoneHiRes||ios_Model==UIDevice_iPhoneStandardRes||ios_Model==UIDevice_iPhoneTallerHiRes){ 
   self.image = [UIImage imageNamed:@"iphone5"]; 
   self.appImv.frame = CGRectMake(0, 0, self.image.size.width, self.image.size.height); 
  }else if (ios_Model==UIDevice_iPhone6HiRes){ 
   self.image = [UIImage imageNamed:@"iphone6"]; 
   self.appImv.frame = CGRectMake(0, 0, self.image.size.width, self.image.size.height); 
  }else if (ios_Model==UIDevice_iPhone6pHiRes){ 
   self.image = [UIImage imageNamed:@"iphone6p"]; 
   self.appImv.frame = CGRectMake(0, 0, self.image.size.width, self.image.size.height); 
  } 
  //  self.appImv.frame = CGRectMake(0, 0, AppImageViewW, AppImageViewH); 
  if (ios_Model==UIDevice_iPhoneHiRes||ios_Model==UIDevice_iPhoneStandardRes){ 
   self.appImv.center = CGPointMake(kScreenW/2, AppViewOriginCenterY+5); 
  }else if (ios_Model==UIDevice_iPhone6HiRes){ 
   self.appImv.center = CGPointMake(kScreenW/2, AppViewOriginCenterY); 
  }else if (ios_Model==UIDevice_iPhoneTallerHiRes||ios_Model==UIDevice_iPhone6pHiRes){ 
   self.appImv.center = CGPointMake(kScreenW/2, AppViewOriginCenterY); 
  } 
  //设置app名字的尺寸 
  self.appName.frame =CGRectMake(0, 0, AppImageViewW, 30); 
  self.appName.center=CGPointMake(kScreenW/2, AppNameOriginCenterY); 
  //设置app拼音的尺寸 
  self.appPinyin.frame =CGRectMake(0, 0, SCREEN_WIDTH, 20); 
  self.appPinyin.center=CGPointMake(kScreenW/2, AppNameOriginCenterY+AppImageViewH/2); 
  //设置广告尺寸 
  //self.advertImv.image = adimg; 
  self.advertImv.frame= CGRectMake(0, 0, kScreenW,kScreenH); 
   
 
 } 
 return self; 
} 
 
/** 
 * 交给代理类处理图片点击后的按钮 
 */ 
-(void)click 
{ 
 if ([self.delegate respondsToSelector:@selector(adViewClick)]) { 
   
  [self.delegate adViewClick]; 
 } 
} 
/* 
// Only override drawRect: if you perform custom drawing. 
// An empty implementation adversely affects performance during animation. 
- (void)drawRect:(CGRect)rect { 
 // Drawing code 
} 
*/ 
 
@end 
[self.view setBackgroundColor:[UIColor greenColor]]; 
 
 XBAdvertView * ad = [[XBAdvertView alloc]initWithFrame:[UIScreen mainScreen].bounds]; 
 UIImage * image = [UIImage imageNamed:@"ad.jpg"]; 
 ad.adimage = image; 
 [self.view addSubview:ad]; 

四、总结

以上就是iOS实现动态开屏广告的全部内容了,希望对大家学习或开发iOS能有所帮助,如果有疑问大家可以留言交流。

相关文章

  • 详解Swift 之clipped是什么如何用

    详解Swift 之clipped是什么如何用

    这篇文章主要介绍了详解Swift 之clipped是什么如何用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-01-01
  • iOS开发输入自动填充UITextField背景色

    iOS开发输入自动填充UITextField背景色

    如何在iOS中实现输入时自动填充背景色的效果,首先,我们设置UITextField的背景色为初始颜色,然后,通过设置UITextField的代理,并监听UITextField的输入事件,我们在用户开始输入时将其背景色改变为高亮颜色,在用户结束输入时恢复为初始颜色
    2023-10-10
  • 详解iOS多线程之2.NSThread的加锁@synchronized

    详解iOS多线程之2.NSThread的加锁@synchronized

    这篇文章主要介绍了详解iOS多线程之2.NSThread的加锁@synchronized,有需要的小伙伴可以参考下。
    2016-11-11
  • iOS中在APP内加入AppStore评分功能的实现方法

    iOS中在APP内加入AppStore评分功能的实现方法

    这篇文章主要介绍了iOS中在APP内加入AppStore评分功能的实现方法,文中笔者给大家整理了三种方式,大家可以根据自己的需求选择,需要的朋友可以参考下
    2017-11-11
  • iOS简单抽屉效果的实现方法

    iOS简单抽屉效果的实现方法

    这篇文章主要为大家详细介绍了iOS简单抽屉效果的实现方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • iOS开发实现音频播放功能

    iOS开发实现音频播放功能

    本文给大家分享的是在IOS开发过程中实现音频播放的功能,讲解的十分细致,有需要的小伙伴可以参考下
    2016-03-03
  • iOS浮点类型精度问题的原因与解决办法

    iOS浮点类型精度问题的原因与解决办法

    在iOS开发中,我们经常要使用浮点类型去接收后台返回过来的的数据,这时往往会遇到精度问题,这篇文章主要给大家介绍了关于iOS浮点类型精度问题的原因与解决办法,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2022-01-01
  • iOS App开发中通过UIDevice类获取设备信息的方法

    iOS App开发中通过UIDevice类获取设备信息的方法

    UIDevice最常见的用法就是用来监测iOS设备的电量了,然后再实现电池状态通知非常方便,除此之外还有传感器等信息的获取,这里我们就来总结一下iOS App开发中通过UIDevice类获取设备信息的方法:
    2016-07-07
  • iOS如何将字符串中特定后的字变成红色

    iOS如何将字符串中特定后的字变成红色

    这篇文章主要介绍了iOS将字符串中特定后的字变成红色的实例代码,非常不错,具有参考借鉴价值,需要的朋友参考下吧
    2017-07-07
  • iOS开发中Date Picker和UITool Bar控件的使用简介

    iOS开发中Date Picker和UITool Bar控件的使用简介

    这篇文章主要介绍了iOS开发中Date Picker和UITool Bar控件的使用简介,代码基于传统的Objective-C,需要的朋友可以参考下
    2016-01-01

最新评论