一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - IOS - iOS實現(xiàn)動態(tài)的開屏廣告示例代碼

iOS實現(xiàn)動態(tài)的開屏廣告示例代碼

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

啟動圖是在iOS開發(fā)過程中必不可少的一個部分,很多app在啟動圖之后會有一張自定義的開屏廣告圖,但是有的時候需要讓啟動圖看起來就是一個廣告,而且還要這個廣告里面會動,iOS的啟動圖只能是靜態(tài)的,而且固定,為了實現(xiàn)看

一、實現(xiàn)效果圖

iOS實現(xiàn)動態(tài)的開屏廣告示例代碼

二、實現(xiàn)思路:

用一個固定的png圖片左啟動圖,應該和廣告視圖需要進行動畫的期初的位置一致,當啟動圖消失的時候,呈現(xiàn)出圖片,實際遇到的困難是,因為廣告圖片是從網(wǎng)絡請求加載的,當時把廣告視圖放在了請求數(shù)據(jù)的塊里面,廣告出現(xiàn)的時候會閃一下,放在外面就沒事了。

三、實現(xiàn)示例

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實現(xiàn)動態(tài)開屏廣告的全部內容了,希望對大家學習或開發(fā)ios能有所幫助,如果有疑問大家可以留言交流。

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

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲国产精品一区二区首页 | 日产乱码卡1卡2卡三卡四在线 | 国产激情视频网站 | 日本老妇乱子伦中文视频 | 亚洲精品综合网 | 欧美日韩中文国产一区二区三区 | 色老板免费在线观看 | re99热| 暗卫调教女主肉高h | 免费视频大全 | 欧美日韩亚洲成人 | 国产精品久久亚洲一区二区 | 3黑人巨大vs北岛玲 3d肉浦团在线观看 3d动漫免费 | 亚洲国产区男人本色在线观看欧美 | 8x8x丝袜美女 | 娇妻中日久久持久久 | 美女的让男人桶爽30分钟的 | 精品国产乱码久久久久久免费流畅 | 我的妹妹最近有点怪免费播放 | 亚洲aⅴ男人的天堂在线观看 | 好大好硬好深好爽想要小雪 | 国产精品合集一区二区 | 狠狠综合久久综合网站 | 91国产在线第7页 | 网友自拍咪咪爱 | 肉文小说 | 久久久影院亚洲精品 | 丝瓜黄瓜茄子西红柿秋葵榴莲 | 国产综合亚洲专区在线 | 欧美成人免费观看bbb | 91插视频| 国产美女亚洲精品久久久久久 | 免费高清视频日本 | 亚洲va国产日韩欧美精品色婷婷 | 天美传媒果冻传媒星空传媒 | 99久久综合给久久精品 | 果冻传媒在线播放观看228集 | 久久免费黄色 | 星星动漫在线观看免费 | 99精品国产成人a∨免费看 | cos美女被黄网站 |