项目介绍:
项目简介
MXParallaxHeader是一个简单的UIScrollView header类。
MXScrollView是一个UIScrollView的子类,能后从它的子视图中hook垂直滚动条,这样能添加一个视差header从而使视图层次变得复杂。
另外,MXScrollViewController可以让你在任何UIViewController中添加一个MXParallaxHeader。
UIScrollView
MXScrollViewController
使用方法
如果你想使用这个项目,直接运行
pod try MXParallaxHeader
或者将这库clone,并在Example目录中运行pod install
在UIScrollView中添加一个视差header
UIImageView *headerView = [UIImageView new];
headerView.image = [UIImage imageNamed:@”success-baby”];
headerView.contentMode = UIViewContentModeScaleAspectFill;
UIScrollView *scrollView = [UIScrollView new];
scrollView.parallaxHeader.view = headerView;
scrollView.parallaxHeader.height = 150;
scrollView.parallaxHeader.mode = MXParallaxHeaderModeFill;
scrollView.parallaxHeader.minimumHeight = 20;
安装
该项目可以通过CocoaPods安装,在你的Podfile中添加如下内容:
pod “MXParallaxHeader”
github地址:https://github.com/maxep/MXParallaxHeader