服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS实现动态的开屏广告示例代码

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

2021-01-27 15:44小白yige IOS

启动图是在iOS开发过程中必不可少的一个部分,很多app在启动图之后会有一张自定义的开屏广告图,但是有的时候需要让启动图看起来就是一个广告,而且还要这个广告里面会动,iOS的启动图只能是静态的,而且固定,为了实现看

一、实现效果图

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

二、实现思路:

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

三、实现示例

1.广告的头文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
//
// 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
?
1
2
3
4
5
6
[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能有所帮助,如果有疑问大家可以留言交流。

原文链接:http://blog.csdn.net/a158337/article/details/50475790

延伸 · 阅读

精彩推荐
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28