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

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

服务器之家 - 编程语言 - IOS - iOS开发--仿新闻首页效果WMPageController的使用详解

iOS开发--仿新闻首页效果WMPageController的使用详解

2021-02-14 23:29小兵快跑 IOS

这篇文章主要介绍了iOS开发--仿新闻首页效果WMPageController的使用详解,详解的介绍了iOS开发中第三方库WMPageController控件的使用方法,有需要的可以了解下。

这一篇记录的是ios开发中第三方库wmpagecontroller控件的使用方法,主要是用来分页显示内容的,可以通过手势滑动来切换页面,也可以通过点击标题部分来切换页面,如下图所示:
iOS开发--仿新闻首页效果WMPageController的使用详解

使用方法:

新建工程demotest1,然后通过cocoapods引入wmpagecontroller到项目中,podfile文件的内容如下:

?
1
2
3
4
5
6
7
platform :ios,'7.0'
 
target 'demotest1' do
 
 pod 'wmpagecontroller', '~> 1.6.4'
 
end

方法一:

(1)创建几个viewcontroller继承自uiviewcontroller测试用:

(2)打开appdelegate.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
#import "wmpagecontroller.h"
 
#import "oneviewcontroller.h"
#import "viewcontroller.h"
#import "twoviewcontroller.h"
 
@interface appdelegate ()
 
@property(nonatomic,strong) wmpagecontroller *createpages;
 
@end
 
@implementation appdelegate
 
- (wmpagecontroller *)createpages {
 
 
  //wmpagecontroller中包含的页面数组
  nsarray *controllers = [nsarray arraywithobjects:[viewcontroller class], [oneviewcontroller class],[twoviewcontroller class], nil];
  //wmpagecontroller控件的标题数组
  nsarray *titles = [nsarray arraywithobjects:@"体育新闻", @"娱乐新闻",@"直播新闻", nil];
  //用上面两个数组初始化wmpagecontroller对象
  wmpagecontroller *pagecontroller = [[wmpagecontroller alloc] initwithviewcontrollerclasses:controllers andtheirtitles:titles];
  pagecontroller.menuviewstyle = wmmenuviewstyleline;
  pagecontroller.titlecolorselected = [uicolor whitecolor];
  pagecontroller.titlecolornormal = [uicolor colorwithred:168.0/255.0 green:20.0/255.0 blue:4/255.0 alpha:1];
  pagecontroller.progresscolor = [uicolor colorwithred:168.0/255.0 green:20.0/255.0 blue:4/255.0 alpha:1];
  //  pagecontroller.itemswidths = @[@(70),@(100),@(70)]; // 这里可以设置不同的宽度
 
  //设置wmpagecontroller每个标题的宽度
  pagecontroller.menuitemwidth = 375/3;
  //设置wmpagecontroller标题栏的高度
  pagecontroller.menuheight = 35;
  //设置wmpagecontroller选中的标题的颜色
  pagecontroller.titlecolorselected = [uicolor colorwithred:200 green:0 blue:0 alpha:1];
  return pagecontroller;
}
 
 
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
 
 
 self.window = [[uiwindow alloc] initwithframe:[uiscreen mainscreen].bounds];
 
 
  wmpagecontroller *page = [self createpages];
 
  uinavigationcontroller *na = [[uinavigationcontroller alloc] initwithrootviewcontroller:page];
 
  self.window.rootviewcontroller = na;
 
  [self.window makekeyandvisible];
 
  return yes;
}

方法二:

(1)创建个viewcontroller继承自wmpagecontroller

(2)编辑viewcontroller.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
#import "twoviewcontroller.h"
#import "oneviewcontroller.h"
#import "tableviewcontroller.h"
 
#import "threeviewcontroller.h"
 
@interface threeviewcontroller ()
 
@property (nonatomic, strong) nsarray *titledata;
@end
 
@implementation threeviewcontroller
 
#pragma mark 标题数组
- (nsarray *)titledata {
  if (!_titledata) {
    _titledata = @[@"单曲", @"详情", @"歌词",@"歌词"];
  }
  return _titledata;
}
#pragma mark 初始化代码
- (instancetype)init {
  if (self = [super init]) {
 
 
    self.titlesizenormal = 15;
    self.titlesizeselected = 15;
    self.menuviewstyle = wmmenuviewstyleline;
    self.menuitemwidth = [uiscreen mainscreen].bounds.size.width / self.titledata.count;
    self.menuheight = 50;
  }
  return self;
}

wmpagecontroller --datasource & delegate

?
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
#pragma mark - datasource & delegate
 
#pragma mark 返回子页面的个数
- (nsinteger)numbersofchildcontrollersinpagecontroller:(wmpagecontroller *)pagecontroller {
  return self.titledata.count;
}
 
#pragma mark 返回某个index对应的页面
- (uiviewcontroller *)pagecontroller:(wmpagecontroller *)pagecontroller viewcontrolleratindex:(nsinteger)index {
 
 
  switch (index) {
      case 0:{
 
        twoviewcontroller  *vcclass = [[twoviewcontroller alloc] init];
        vcclass.title = @"1";
 
        return vcclass;
      }
 
        break;
      case 1:{
 
        oneviewcontroller *vcclass = [oneviewcontroller new];
        vcclass.title = @"2";
        return vcclass;
 
      }
        break;
      case 2:{
 
        tableviewcontroller *vcclass = [tableviewcontroller new];
        vcclass.title = @"3";
        return vcclass;
 
      }
        break;
 
      default:{
 
        oneviewcontroller *vcclass = [oneviewcontroller new];
        vcclass.title = @"4";
        return vcclass;
 
      }
 
        break;
    }
 
 
}
 
#pragma mark 返回index对应的标题
- (nsstring *)pagecontroller:(wmpagecontroller *)pagecontroller titleatindex:(nsinteger)index {
 
  return self.titledata[index];
}

相关设置:

?
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
 * values and keys can set properties when initialize child controlelr (it's kvc)
 * values keys 属性可以用于初始化控制器的时候为控制器传值(利用 kvc 来设置)
  使用时请确保 key 与控制器的属性名字一致!!(例如:控制器有需要设置的属性 type,那么 keys 所放的就是字符串 @"type")
 */
@property (nonatomic, strong) nsmutablearray<id> *values;
@property (nonatomic, strong) nsmutablearray<nsstring *> *keys;
 
/**
 * 各个控制器的 class, 例如:[uitableviewcontroller class]
 * each controller's class, example:[uitableviewcontroller class]
 */
@property (nonatomic, copy) nsarray<class> *viewcontrollerclasses;
 
/**
 * 各个控制器标题
 * titles of view controllers in page controller.
 */
@property (nonatomic, copy) nsarray<nsstring *> *titles;
@property (nonatomic, strong, readonly) uiviewcontroller *currentviewcontroller;
 
/**
 * 设置选中几号 item
 * to select item at index
 */
@property (nonatomic, assign) int selectindex;
 
/**
 * 点击相邻的 menuitem 是否触发翻页动画 (当当前选中与点击item相差大于1是不触发)
 * whether to animate when press the menuitem, if distant between the selected and the pressed is larger than 1,never animate.
 */
@property (nonatomic, assign) bool pageanimatable;
 
/**
 * 选中时的标题尺寸
 * the title size when selected (animatable)
 */
@property (nonatomic, assign) cgfloat titlesizeselected;
 
/**
 * 非选中时的标题尺寸
 * the normal title size (animatable)
 */
@property (nonatomic, assign) cgfloat titlesizenormal;
 
/**
 * 标题选中时的颜色, 颜色是可动画的.
 * the title color when selected, the color is animatable.
 */
@property (nonatomic, strong) uicolor *titlecolorselected;
 
/**
 * 标题非选择时的颜色, 颜色是可动画的.
 * the title's normal color, the color is animatable.
 */
@property (nonatomic, strong) uicolor *titlecolornormal;
 
/**
 * 标题的字体名字
 * the name of title's font
 */
@property (nonatomic, copy) nsstring *titlefontname;
 
/**
 * 导航栏高度
 * the menu view's height
 */
@property (nonatomic, assign) cgfloat menuheight;
 
// 当所有item的宽度加起来小于屏幕宽时,pagecontroller会自动帮助排版,添加每个item之间的间隙以填充整个宽度
// when the sum of all the item's width is smaller than the screen's width, pagecontroller will add gap to each item automatically, in order to fill the width.
 
/**
 * 每个 menuitem 的宽度
 * the item width,when all are same,use this property
 */
@property (nonatomic, assign) cgfloat menuitemwidth;
 
/**
 * 各个 menuitem 的宽度,可不等,数组内为 nsnumber.
 * each item's width, when they are not all the same, use this property, put `nsnumber` in this array.
 */
@property (nonatomic, copy) nsarray<nsnumber *> *itemswidths;
 
/**
 * 导航栏背景色
 * the background color of menu view
 */
@property (nonatomic, strong) uicolor *menubgcolor;
 
/**
 * menu view 的样式,默认为无下划线
 * menu view's style, now has two different styles, 'line','default'
 */
@property (nonatomic, assign) wmmenuviewstyle menuviewstyle;
 
@property (nonatomic, assign) wmmenuviewlayoutmode menuviewlayoutmode;
 
/**
 * 进度条的颜色,默认和选中颜色一致(如果 style 为 default,则该属性无用)
 * the progress's color,the default color is same with `titlecolorselected`.if you want to have a different color, set this property.
 */
@property (nonatomic, strong) uicolor *progresscolor;
 
/**
 * 定制进度条在各个 item 下的宽度
 */
@property (nonatomic, strong) nsarray *progressviewwidths;
 
/// 定制进度条,若每个进度条长度相同,可设置该属性
@property (nonatomic, assign) cgfloat progresswidth;
 
/// 调皮效果,用于实现腾讯视频新效果,请设置一个较小的 progresswidth
@property (nonatomic, assign) bool progressviewisnaughty;
 
/**
 * 是否发送在创建控制器或者视图完全展现在用户眼前时通知观察者,默认为不开启,如需利用通知请开启
 * whether notify observer when finish init or fully displayed to user, the default is no.
 * see `wmpageconst.h` for more information.
 */
@property (nonatomic, assign) bool postnotification;
 
/**
 * 是否记录 controller 的位置,并在下次回来的时候回到相应位置,默认为 no (若当前缓存中存在不会触发)
 * whether to remember controller's positon if it's a kind of scrollview controller,like uitableviewcontroller,the default value is no.
 * 比如 `uitabelviewcontroller`, 当然你也可以在自己的控制器中自行设置, 如果将 controller.view 替换为 scrollview 或者在controller.view 上添加了一个和自身 bounds 一样的 scrollview 也是ok的
 */
@property (nonatomic, assign) bool rememberlocation __deprecated_msg("because of the cache policy,this property can abondon now.");
 
/** 缓存的机制,默认为无限制 (如果收到内存警告, 会自动切换) */
@property (nonatomic, assign) wmpagecontrollercachepolicy cachepolicy;
 
/** 预加载机制,在停止滑动的时候预加载 n 页 */
@property (nonatomic, assign) wmpagecontrollerpreloadpolicy preloadpolicy;
 
/** whether contentview bounces */
@property (nonatomic, assign) bool bounces;
 
/**
 * 是否作为 navigationbar 的 titleview 展示,默认 no
 * whether to show on navigation bar, the default value is `no`
 */
@property (assign, nonatomic) bool showonnavigationbar;
 
/**
 * 用代码设置 contentview 的 contentoffset 之前,请设置 startdragging = yes
 * set startdragging = yes before set contentview.contentoffset = xxx;
 */
@property (nonatomic, assign) bool startdragging;
 
/** 下划线进度条的高度 */
@property (nonatomic, assign) cgfloat progressheight;
 
/** wmpagecontroller view' frame */
@property (nonatomic, assign) cgrect viewframe;
 
/**
 * menu view items' margin / make sure it's count is equal to (controllers' count + 1),default is 0
  顶部菜单栏各个 item 的间隙,因为包括头尾两端,所以确保它的数量等于控制器数量 + 1, 默认间隙为 0
 */
@property (nonatomic, copy) nsarray<nsnumber *> *itemsmargins;
 
/**
 * set itemmargin if all margins are the same, default is 0
  如果各个间隙都想同,设置该属性,默认为 0
 */
@property (nonatomic, assign) cgfloat itemmargin;
 
/** 顶部 menuview 和 scrollview 之间的间隙 */
@property (nonatomic, assign) cgfloat menuviewbottomspace;
 
/** progressview 到 menuview 底部的距离 */
@property (nonatomic, assign) cgfloat progressviewbottomspace;
 
/** progressview's cornerradius */
@property (nonatomic, assign) cgfloat progressviewcornerradius;
/** 顶部导航栏 */
@property (nonatomic, weak) wmmenuview *menuview;
 
/** 内部容器 */
@property (nonatomic, weak) wmscrollview *scrollview;
 
/** menuview 内部视图与左右的间距 */
@property (nonatomic, assign) cgfloat menuviewcontentmargin;
 
/**
 * 左滑时同时启用其他手势,比如系统左滑、sidemenu左滑。默认 no
  (会引起一个小问题,第一个和最后一个控制器会变得可以斜滑, 还未解决)
 */
@property (assign, nonatomic) bool othergesturerecognizersimultaneously;
/**
 * 构造方法,请使用该方法创建控制器. 或者实现数据源方法. /
 * init method,recommend to use this instead of `-init`. or you can implement datasource by yourself.
 *
 * @param classes 子控制器的 class,确保数量与 titles 的数量相等
 * @param titles 各个子控制器的标题,用 nsstring 描述
 *
 * @return instancetype
 */
- (instancetype)initwithviewcontrollerclasses:(nsarray<class> *)classes andtheirtitles:(nsarray<nsstring *> *)titles;
 
/**
 * a method in order to reload menuview and child view controllers. if you had set `itemsmargins` or `itemswidths` `values` and `keys` before, make sure you have update them also before you call this method. and most important, pay attention to the count of those array.
  该方法用于重置刷新父控制器,该刷新包括顶部 menuview 和 childviewcontrollers.如果之前设置过 `itemsmargins` 和 `itemswidths` `values` 以及 `keys` 属性,请确保在调用 reload 之前也同时更新了这些属性。并且,最最最重要的,注意数组的个数以防止溢出。
 */
- (void)reloaddata;
 
/**
 * update designated item's title
  更新指定序号的控制器的标题
 *
 * @param title 新的标题
 * @param index 目标序号
 */
- (void)updatetitle:(nsstring *)title atindex:(nsinteger)index;
 
/**
 * update designated item's title and width
  更新指定序号的控制器的标题以及他的宽度
 *
 * @param title 新的标题
 * @param index 目标序号
 * @param width 对应item的新宽度
 */
- (void)updatetitle:(nsstring *)title andwidth:(cgfloat)width atindex:(nsinteger)index;
 
/** 当 app 即将进入后台接收到的通知 */
- (void)willresignactive:(nsnotification *)notification;
/** 当 app 即将回到前台接收到的通知 */
- (void)willenterforeground:(nsnotification *)notification;

源码demo:源码下载

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

延伸 · 阅读

精彩推荐
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

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

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

    J_Kang3862021-04-22
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

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

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

    xiari5772021-06-01
  • IOS关于iOS自适应cell行高的那些事儿

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

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

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

    iOS 雷达效果实例详解

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

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

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

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

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

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

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

    苦练内功5832021-04-01
  • IOSiOS通过逆向理解Block的内存模型

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

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

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

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

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

    一片枫叶4662020-12-25