ios零碎记录移动开发技术前沿iOS程序犭袁

开源啦,一个iOS中完全解耦的ViewPager实现。

2017-03-31  本文已影响3380人  景铭巴巴

一、简述

现在的App也来越关注用户的体验,如果你们需求是做一个让别人轻松逛一逛的界面的话,像这种可以左右滑动切换Tab的多界面交互效果是非常适合的,不需要用户过多的点击,左右滑动的交互效果让体验更加良好。比如手淘首页中“淘抢购”,“有好货”,“男神范”,“必买清单”都是这种交互方式。我们飞猪在做出境超市首页Native化、周边好去处项目、全球第一站项目,也是采取这种交互方式,项目也顺利完成,在交互效果上大家评价都还不错,我花了一点时间,去掉了一些业务代码,对代码重构了一下,提取出了可以开源的部分代码,供大家做一个参考。项目地址

二、可以实现的效果展示

效果 展示
图片+文字切换效果
淘宝有好货
<img src="http:https://img.haomeiwen.com/i1595403/d2768a8d7eb159df.gif?imageMogr2/auto-orient/strip" height=250/>
单独文字切换效果
淘宝有好货
<img src="http:https://img.haomeiwen.com/i1595403/815d0a9ae3434587.gif?imageMogr2/auto-orient/strip" height=250/>
单独图片切换效果
淘宝有好货
<img src="http:https://img.haomeiwen.com/i1595403/1744c20c63cb20ac.gif?imageMogr2/auto-orient/strip" height=250/>
图片+文字选中切换效果
出境超市
<img src="http:https://img.haomeiwen.com/i1595403/ee2f52d368143461.gif?imageMogr2/auto-orient/strip" height=250/>
超过一屏时候的切换效果
出境超市
<img src="http:https://img.haomeiwen.com/i1595403/ea2939e00290d91e.gif?imageMogr2/auto-orient/strip" height=250/>
复杂遮罩切换效果
全球第一战、周边好去处

三、如何使用

属性名称 属性效果
topViewBgColor 背景色
maskColor 第一遮罩颜色
maskHeight 第一遮罩高度 默认和父类一样高
maskWidth 第一遮罩宽度 默认和父类一样宽
needSecondaryMask 是否需要第二遮罩
secondaryMaskColor 第二遮罩颜色
secondaryMaskColorAlpha 第二遮罩层颜色的alpha值
maskPositionType 遮罩位置 0:占据整个高度 1:顶部 2: 顶部
type 显示类型 0:总宽度为屏幕宽度,不可滚动,每个item的宽度,根据item的个数确定。适合item数比较少的情况 1:每个item的宽度确定,超过屏幕可以滑动。适合item数比较多的情况
itemWidth 每一个item显示的宽度
items 每一个items的信息集合
属性名称 属性效果
itemType 显示模式 0: 文本 1: 图片 2: 图文混排
title 标题
normalTitleColor 未选中标题颜色
selectTitleColor 选中标题颜色
normalIconName 未选中图标
selectIconName 选中图标
imageType 图片类型 0: 本地图片 1:网络图片
vcName 该item对应的ViewController的名称
    [self renderUI];//渲染主框架
    [self tabItemSelected:0 needAnimation:NO];//主框架定位到第几个tab

 [self.delegate handleEventWithEventName:@"jumpOtherType" context:@{@"index":@4}];

然后在主框架中实现代理方法即可。

    - (void)handleEventWithEventName:(NSString *)eventName context:(NSDictionary *)context{
       NSLog(@"eventName == %@",eventName);
       NSLog(@"content == %@",context);
       if (!STRING_IS_BLANK(eventName)) {
           if ([eventName isEqualToString:@"jumpOtherType"]) {
               NSInteger index = [context[@"index"] integerValue];
               [self tabItemSelected:index];
           }
       }
   }

四、联系方式

新浪微博

github

简书首页

如果感觉有用,star一下吧~ ~。

上一篇下一篇

猜你喜欢

热点阅读