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

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

服务器之家 - 编程语言 - IOS - iOS使用pageViewController实现多视图滑动切换

iOS使用pageViewController实现多视图滑动切换

2021-05-03 17:23flg_iOS IOS

这篇文章主要为大家详细介绍了iOS使用pageViewController实现多视图滑动切换,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了pageviewcontroller实现多视图(控制器)滑动切换的具体代码,供大家参考,具体内容如下

先看一下效果动画

iOS使用pageViewController实现多视图滑动切换iOS使用pageViewController实现多视图滑动切换

类似的界面做过不少,在几个app中都有用到过,再次之前不了解uipageviewcontroller 曾经的思路有两个现在想想都觉得繁琐。

之前的思路1:使用嵌套,collectionview嵌套,每个item中添加内容

之前的思路2:使用scrollview 在上面创建一个一个的controller 实现左右滑动

这两个思路无疑是可以实现的,并且可以实现每个页面的重用,滑动等都可,唯独一点不好就是当停留在第一页的时候,点击标题栏第五页,那么平移的过程就是第一页到第五页,所有的页面从屏幕快速闪过,并且看到现在很多app都是这样的。在此之前我是用的思路2,为了避免跨页面切换出现的中间几个页面闪过的过程,直接把平移动画关闭了。直到使用了uipageviewcontroller,赶紧把项目中的给换掉了

代码不多150行以内

?
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#import "viewcontroller.h"/// 当前controller
#import "myviewcontroller.h" /// 复用的controller 适用于每个控制器布局相同的情况下,,布局不同就创建不同的controller添加进来
#import "titlecollectionviewcell.h"/// 标题栏使用的collectionviewcell
 
@interface viewcontroller ()<uipageviewcontrollerdelegate,uipageviewcontrollerdatasource,uicollectionviewdelegate,uicollectionviewdatasource>{
 
 //// 记录当前页 当前标题位置
 
 nsinteger ld_currentindex;
 
}
 
@property (nonatomic, strong) uipageviewcontroller *pageviewcontroller;
@property (nonatomic, strong) nsmutablearray *controllersarr;/// 控制器数组
@property (nonatomic, strong) nsmutablearray *titlearray; /// 标题数组
@property (nonatomic, strong) uicollectionview *titlecollectionview; /// 标题collectionview
 
@end
 
@implementation viewcontroller
 
 
- (void)viewdidload {
 [super viewdidload];
 self.view.backgroundcolor = [uicolor whitecolor];
 self.navigationcontroller.navigationbar.translucent = no;
 self.controllersarr = [nsmutablearray array];
 self.titlearray = [nsmutablearray array];
 //// 如果controller布局相同则循环创建myviewcontroller 添加进数组,,如果controller 布局不同 那就创建多个不同controller依次添加数组
 for (int i = 0; i < 10; i++) {
  myviewcontroller *con = [[myviewcontroller alloc]init];
  [self.controllersarr addobject:con];
  nsstring *str = [nsstring stringwithformat:@"第 %d 页", i+1];
  con.titlestring = str;
  [self.titlearray addobject:str];
 
 }
 [self createcollectionview];
 [self createpageviewcontroller];
 [self setthefirstpage];
 
}
 
 
 
/// 创建标题collectionview
- (void)createcollectionview{
 uicollectionviewflowlayout *lay = [[uicollectionviewflowlayout alloc] init];
 lay.itemsize = cgsizemake(60, 30);
 lay.minimumlinespacing = 0;
 lay.minimuminteritemspacing = 0;
 lay.scrolldirection = uicollectionviewscrolldirectionhorizontal;
 self.titlecollectionview = [[uicollectionview alloc] initwithframe:cgrectmake(0, 34, 375, 30) collectionviewlayout:lay];
 self.titlecollectionview.showshorizontalscrollindicator = no;
 self.titlecollectionview.backgroundcolor = [uicolor whitecolor];
 self.titlecollectionview.delegate = self;
 self.titlecollectionview.datasource = self;
 [self.titlecollectionview registerclass:[titlecollectionviewcell class] forcellwithreuseidentifier:@"titlereuse"];
 [self.navigationcontroller.view addsubview:self.titlecollectionview];
 
 
}
 
//// 标题collectionview的协议方法
 
- (nsinteger)collectionview:(uicollectionview *)collectionview numberofitemsinsection:(nsinteger)section{
 return self.titlearray.count;
 
}
 
- (uicollectionviewcell *)collectionview:(uicollectionview *)collectionview cellforitematindexpath:(nsindexpath *)indexpath {
 titlecollectionviewcell *cell = [collectionview dequeuereusablecellwithreuseidentifier:@"titlereuse" forindexpath:indexpath];
 cell.titlelabel.text = self.titlearray[indexpath.row];
 if (indexpath.row == ld_currentindex) {
  cell.titlelabel.textcolor = [uicolor orangecolor];
 
 }else{
 
  cell.titlelabel.textcolor = [uicolor blackcolor];
 
 }
 
 return cell;
 
}
 
//// 点击标题左右切换视图控制器------------再也不用看到好几个中间页面从屏幕快速闪过了------
- (void)collectionview:(uicollectionview *)collectionview didselectitematindexpath:(nsindexpath *)indexpath{
 uiviewcontroller *vc = [self.controllersarr objectatindex:indexpath.row];
 if (indexpath.row > ld_currentindex) {
  [self.pageviewcontroller setviewcontrollers:@[vc] direction:uipageviewcontrollernavigationdirectionforward animated:yes completion:^(bool finished) {
 
  }];
 
 } else {
 
  [self.pageviewcontroller setviewcontrollers:@[vc] direction:uipageviewcontrollernavigationdirectionreverse animated:yes completion:^(bool finished) {
 
  }];
 
 }
 ld_currentindex = indexpath.row;
 nsindexpath *path = [nsindexpath indexpathforrow:ld_currentindex insection:0];
 [self.titlecollectionview scrolltoitematindexpath:path atscrollposition:uicollectionviewscrollpositioncenteredhorizontally animated:yes];
 [self.titlecollectionview reloaddata];
 
}
 
 
 
/// 创建pageviewcontroller
- (void)createpageviewcontroller {
 nsdictionary *option = [nsdictionary dictionarywithobject:[nsnumber numberwithinteger:0] forkey:uipageviewcontrolleroptioninterpagespacingkey];
 _pageviewcontroller = [[uipageviewcontroller alloc]initwithtransitionstyle:uipageviewcontrollertransitionstylescroll navigationorientation:uipageviewcontrollernavigationorientationhorizontal options:option];
 _pageviewcontroller.delegate = self;
 _pageviewcontroller.datasource = self;
 [self addchildviewcontroller:_pageviewcontroller];
 [self.view addsubview:_pageviewcontroller.view];
 
}
 
/// 展示上一页
- (nullable uiviewcontroller *)pageviewcontroller:(uipageviewcontroller *)pageviewcontroller viewcontrollerbeforeviewcontroller:(uiviewcontroller *)viewcontroller {
 nsinteger index = [self.controllersarr indexofobject:viewcontroller];
 if (index == 0 || (index == nsnotfound)) {
  return nil;
 
 }
 
 index--;
 return [self.controllersarr objectatindex:index];
 
}
 
/// 展示下一页
- (nullable uiviewcontroller *)pageviewcontroller:(uipageviewcontroller *)pageviewcontroller viewcontrollerafterviewcontroller:(uiviewcontroller *)viewcontroller {
 nsinteger index = [self.controllersarr indexofobject:viewcontroller];
 if (index == self.controllersarr.count - 1 || (index == nsnotfound)) {
  return nil;
 
 }
 
 index++;
 return [self.controllersarr objectatindex:index];
 
}
 
/// 将要滑动切换的时候
- (void)pageviewcontroller:(uipageviewcontroller *)pageviewcontroller willtransitiontoviewcontrollers:(nsarray<uiviewcontroller *> *)pendingviewcontrollers {
 uiviewcontroller *nextvc = [pendingviewcontrollers firstobject];
 nsinteger index = [self.controllersarr indexofobject:nextvc];
 ld_currentindex = index;
 
}
 
/// 滑动结束后
- (void)pageviewcontroller:(uipageviewcontroller *)pageviewcontroller didfinishanimating:(bool)finished previousviewcontrollers:(nsarray<uiviewcontroller *> *)previousviewcontrollers transitioncompleted:(bool)completed {
 if (completed) {
  nsindexpath *path = [nsindexpath indexpathforrow:ld_currentindex insection:0];
  [self.titlecollectionview scrolltoitematindexpath:path atscrollposition:uicollectionviewscrollpositioncenteredhorizontally animated:yes];
  [self.titlecollectionview reloaddata];
 
  nslog(@">>>>>>>>> %ld", (long)ld_currentindex);
 
 }
 
}
 
/// 设置默认显示的是哪个页面(controller)
- (void)setthefirstpage{
 uiviewcontroller *vc = [self.controllersarr objectatindex:ld_currentindex];
 [self.pageviewcontroller setviewcontrollers:@[vc] direction:uipageviewcontrollernavigationdirectionreverse animated:yes completion:nil];
 
}
 
- (void)didreceivememorywarning {
 [super didreceivememorywarning];
 // dispose of any resources that can be recreated.
 
}
 
titlecollectionviewcell
@implementation titlecollectionviewcell
 
 
- (instancetype)initwithframe:(cgrect)frame{
 self = [super initwithframe:frame];
 if (self) {
  [self createview];
 
 }
 return self;
 
}
 
- (void)createview{
 self.titlelabel = [[uilabel alloc] initwithframe:cgrectmake(0, 0, self.contentview.frame.size.width, self.contentview.frame.size.height)];
 [self.contentview addsubview:self.titlelabel];
 self.titlelabel.font = [uifont systemfontofsize:14];
 
}
@end

demo分享:pageviewcontroller实现多视图滑动切换

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/flg1554112450/article/details/75031066

延伸 · 阅读

精彩推荐
  • IOSiOS布局渲染之UIView方法的调用时机详解

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

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

    windtersharp7642021-05-04
  • IOS解析iOS开发中的FirstResponder第一响应对象

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

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

    一片枫叶4662020-12-25
  • IOS关于iOS自适应cell行高的那些事儿

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

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

    daisy6092021-05-17
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

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

    SimpleWorld11022021-01-28
  • IOSiOS通过逆向理解Block的内存模型

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

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

    Swiftyper12832021-03-03
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

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

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

    xiari5772021-06-01
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

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

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

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

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

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

    苦练内功5832021-04-01