文章来源:淘论文网   发布者: 毕业设计   浏览量: 44



还可以点击去查询以下关键词:
[高仿]    [网易]    [新闻]    [客户端]    [左右]    [滑定]    [制动]    [切换]    [页面]    [框架]    [-LXScrollContentView]    [高仿网易新闻客户端左右滑定制动切换页面框架-LXScrollContentView]   

项目介绍:

LXScrollContentView

高仿网易新闻客户端左右滑动切换页面的框架

1. LXScrollContentView描述

这是一个高仿网易新闻客户端首页滑动切换页面的框架。支持点击上方标题,切换下方内容页面,也支持滑动下方内容区域,切换上方的标题。

)

)

2.安装方法

LXScrollContentView支持CocoaPods安装

pod 'LXScrollContentView'

也可以下载示例Demo,把里面的LXScrollContentViewLib文件夹拖到你的项目中即可

3.API使用说明

本框架有 LXScollTitleViewLXScrollContentView 两个类,它们完全独立,可以根据项目需求选择使用。

LXScollTitleView表示上方标题区域,它的具体使用方法如下:

/** 文字未选中颜色,默认black */ @property (nonatomic, strong) UIColor *normalColor; /** 文字选中和下方滚动条颜色,默认red */ @property (nonatomic, strong) UIColor *selectedColor; /** 第几个标题处于选中状态,默认为0 */ @property (nonatomic, assign) NSInteger selectedIndex; /** 每个标题宽度,默认85.f */ @property (nonatomic, assign) CGFloat titleWidth; /** 标题字体font,开题报告,默认14.f */ @property (nonatomic, strong) UIFont *titleFont; /** 下方滚动指示条高度,默认2.f */ @property (nonatomic, assign) CGFloat indicatorHeight; /** 选中标题回调block */ @property (nonatomic, copy) BMPageTitleViewSelectedBlock selectedBlock; /** 刷新界面 @param titles 标题数组 */ - (void)reloadViewWithTitles:(NSArray *)titles;

LXScrollContentView 表示下方滚动内容区域,它的具体使用方法如下:

/** 设置当前滚动到第几个页面,默认为0 */ @property (nonatomic, assign) NSInteger currentIndex; /** 页面滚动停止时触发block回调 */ @property (nonatomic, copy) LXScrollContentViewBlock scrollBlock; /** 刷新页面内容 @param childVcs 当前View需要装入的控制器集合 @param parentVC 当前View所在的父控制器 */ - (void)reloadViewWithChildVcs:(NSArray<UIViewController *> *)childVcs parentVC:(UIViewController *)parentVC;

以下是一个在ViewController中具体使用案例

//初始化UI - (void)setupUI{     self.titleView = [[LXScollTitleView alloc] initWithFrame:CGRectZero];     __weak typeof(self) weakSelf = self;     self.titleView.selectedBlock = ^(NSInteger index){         __weak typeof(self) strongSelf = weakSelf;         strongSelf.contentView.currentIndex = index;     };     self.titleView.backgroundColor = [UIColor colorWithWhite:0.95 alpha:1];     self.titleView.titleWidth = 60.f;     [self.view addSubview:self.titleView];     self.contentView = [[LXScrollContentView alloc] initWithFrame:CGRectZero];     self.contentView.scrollBlock = ^(NSInteger index){         __weak typeof(self) strongSelf = weakSelf;         strongSelf.titleView.selectedIndex = index;     };     [self.view addSubview:self.contentView]; } //调整titleView和contentView的frame - (void)viewDidLayoutSubviews{     [super viewDidLayoutSubviews];     self.titleView.frame = CGRectMake(0, 0, self.view.frame.size.width, 35);     self.contentView.frame = CGRectMake(0, 35, self.view.frame.size.width, self.view.frame.size.height - 35); } //刷新titleView和contentView的数据源,根据项目需求自行选择数据源 - (void)reloadData{     NSArray *titles = @[@'首页',@'体育',@'科技',@'生活',@'本地',@'视频',@'娱乐',@'时尚',@'房地产',@'经济'];     [self.titleView reloadViewWithTitles:titles];     NSMutableArray *vcs = [[NSMutableArray alloc] init];     for (NSString *title in titles) {         LXTestViewController *vc = [[LXTestViewController alloc] init];         vc.category = title;         [vcs addObject:vc];     }     [self.contentView reloadViewWithChildVcs:vcs parentVC:self]; } 4.期望

1.这是 LXScrollContentView 框架发布的第一个版本,还有很多不完善的地方,欢迎大家提出bug。

2.LXScollTitleView 暂时只有一种样式,我会尽快增加更多样式。

3.LXScrollContentView目前使用UICollectionView滑动,在性能方面已经比较优秀。接下来考虑加入cache功能,论文,争取达到更加顺滑的效果。

4.大家如果觉得本框架不错,希望你们可以 Star 一下,我会更有动力的去不断完善。

github链接:https://github.com/LiuXingCode/LXScrollContentView


这里还有:


还可以点击去查询:
[高仿]    [网易]    [新闻]    [客户端]    [左右]    [滑定]    [制动]    [切换]    [页面]    [框架]    [-LXScrollContentView]    [高仿网易新闻客户端左右滑定制动切换页面框架-LXScrollContentView]   

请扫码加微信 微信号:sj52abcd


下载地址: http://www.taolw.com/down/7488.docx
  • 上一篇:一个逻辑清晰的购物车模型毕业设计 包含单选、多选和全选以及左...
  • 下一篇:账号助手--完整小项目