From c7ecfd703f7c69e072a604d5b5e8fef0e5a07fcc Mon Sep 17 00:00:00 2001 From: Maxime Epain Date: Wed, 2 Dec 2015 14:54:03 +0100 Subject: [PATCH] Release 3.0.0 --- MXSegmentedPager.podspec | 5 ++-- README.md | 49 ++++++++++++++++++++++++++++++++++++---- 2 files changed, 47 insertions(+), 7 deletions(-) diff --git a/MXSegmentedPager.podspec b/MXSegmentedPager.podspec index 2e2288114..791b04948 100644 --- a/MXSegmentedPager.podspec +++ b/MXSegmentedPager.podspec @@ -9,10 +9,11 @@ Pod::Spec.new do |s| s.name = "MXSegmentedPager" - s.version = "2.0.0" + s.version = "3.0.0" s.summary = "Segmented pager view with Parallax header." s.description = <<-DESC - MXSegmentedPager is a pager view using [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) as control. The integration of [VGParallaxHeader](https://github.com/stoprocent/VGParallaxHeader) allows you to add an parallax header on top while keeping a reliable scrolling effect. + MXSegmentedPager combines [MXPagerView](https://github.com/maxep/MXPagerView) with [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) to control the page selection. + The integration of [MXParallaxHeader](https://github.com/maxep/MXParallaxHeader) allows you to add an parallax header on top while keeping a reliable scrolling effect. DESC s.homepage = "https://github.com/maxep/MXSegmentedPager" diff --git a/README.md b/README.md index 81c877a0a..185fd19fe 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Platform](https://img.shields.io/cocoapods/p/MXSegmentedPager.svg?style=flat)](http://cocoadocs.org/docsets/MXSegmentedPager) [![Dependency Status](https://www.versioneye.com/objective-c/mxsegmentedpager/1.0/badge.svg)](https://www.versioneye.com/objective-c/mxsegmentedpager) -MXSegmentedPager is a pager view using [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) as control. The integration of [VGParallaxHeader](https://github.com/stoprocent/VGParallaxHeader) allows you to add an parallax header on top while keeping a reliable scrolling effect. +MXSegmentedPager combines [MXPagerView](https://github.com/maxep/MXPagerView) with [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) to control the page selection. The integration of [MXParallaxHeader](https://github.com/maxep/MXParallaxHeader) allows you to add an parallax header on top while keeping a reliable scrolling effect. | Simple view | Parallax view | @@ -15,10 +15,9 @@ MXSegmentedPager is a pager view using [HMSegmentedControl](https://github.com/H ## Highlight + [HMSegmentedControl](https://github.com/HeshamMegid/HMSegmentedControl) is a very customizable control. -+ [VGParallaxHeader](https://github.com/stoprocent/VGParallaxHeader) supports any kind of view with different modes. ++ [MXParallaxHeader](https://github.com/maxep/MXParallaxHeader) supports any kind of view with different modes. ++ [MXPagerView](https://github.com/maxep/MXPagerView) lazily loads pages and supports reusable page registration. + Reliable vertical scroll with any view hierarchy. -+ Lazily load pages. -+ Supports reusable page registration. + Can load view-controller from storyboard using a custom segue. + Fully documented. @@ -34,6 +33,46 @@ Or clone the repo and run `pod install` from the Example directory first. + See MXParallaxViewController to implement a pager with a parallax header. + See MXExampleViewController for a MXSegmentedPagerController subclass example. ++ MXSegmentedPager calls data source methods to load pages. + +```objective-c +#pragma mark + +// Asks the data source to return the number of pages in the segmented pager. +- (NSInteger)numberOfPagesInSegmentedPager:(MXSegmentedPager *)segmentedPager { + return 10; +} + +// Asks the data source for a title realted to a particular page of the segmented pager. +- (NSString *)segmentedPager:(MXSegmentedPager *)segmentedPager titleForSectionAtIndex:(NSInteger)index { + return [NSString stringWithFormat:@"Page %li", (long) index]; +} + +// Asks the data source for a view to insert in a particular page of the pager. +- (UIView *)segmentedPager:(MXSegmentedPager *)segmentedPager viewForPageAtIndex:(NSInteger)index { + + UILabel *label = [UILabel new]; + label.text = [NSString stringWithFormat:@"Page #%i", index]; + label.textAlignment = NSTextAlignmentCenter;; + + return label; +} +``` + ++ Adding a parallax header to a MXSegmentedPager is straightforward, e.g: + +```objective-c +UIImageView *headerView = [UIImageView new]; +headerView.image = [UIImage imageNamed:@"success-baby"]; +headerView.contentMode = UIViewContentModeScaleAspectFill; + +MXSegmentedPager *segmentedPager = [MXSegmentedPager new]; +segmentedPager.parallaxHeader.view = headerView; +segmentedPager.parallaxHeader.height = 150; +segmentedPager.parallaxHeader.mode = MXParallaxHeaderModeFill; +segmentedPager.parallaxHeader.minimumHeight = 20; +``` + ## Installation MXSegmentedPager is available through [CocoaPods](https://cocoapods.org/pods/MXSegmentedPager). To install @@ -41,7 +80,7 @@ it, simply add the following line to your Podfile: ``` pod 'MXSegmentedPager' -```` +``` ## Documentation