Code Monkey home page Code Monkey logo

bmoviewpager's Introduction

BmoViewPager

CI Status Version License Platform

A ViewPager with NavigationBar component based on UIPageViewController and UICollectionView, which is a convenience way to supply and manager each viewController.

I want to make UIPageViewController more intuitive for using it, like UITableView, and supply a navigationBar quickly and simply.

More importantly, when UIPageViewController scroll continuously, pageControl sometimes will get wrong index, this viewPager can help you solve it.

There are some standard dataSource and delegate implemented for generating each page and navigationBar, each of these classes have simple sample code showing in the Pod Example for BmoViewPager.

Simple Usage

Create a UIView extend BmoViewPager

Implement BmoViewPagerDataSource

give page count and each page controller, just like using tableView

func bmoViewPagerDataSourceNumberOfPage(in viewPager: BmoViewPager) -> Int {
    return YourPageCount
}
func bmoViewPagerDataSource(_ viewPager: BmoViewPager, viewControllerForPageAt page: Int) -> UIViewController {
    return YourPageViewController
}

With a NavigationBar

Create a UIView extend BmoViewPagerNavigationBar

Assign a BmoViewPager to the BmoViewPagerNavigationBar

using default style, only need to give the each page title

func bmoViewPagerDataSourceNaviagtionBarItemTitle(_ viewPager: BmoViewPager, navigationBar: BmoViewPagerNavigationBar, forPageListAt page: Int) -> String? {
    return YourPageTitleString
}

navigation item title can custom attributed

func bmoViewPagerDataSourceNaviagtionBarItemNormalAttributed(_ viewPager: BmoViewPager, navigationBar: BmoViewPagerNavigationBar, forPageListAt page: Int) -> [String : Any]? {
    return [
        NSForegroundColorAttributeName : UIColor.lightGray,
        NSFontAttributeName : UIFont.systemFont(ofSize: 14.0)
    ]
}
func bmoViewPagerDataSourceNaviagtionBarItemHighlightedAttributed(_ viewPager: BmoViewPager, navigationBar: BmoViewPagerNavigationBar, forPageListAt page: Int) -> [String : Any]? {
    return [
        NSForegroundColorAttributeName : UIColor.red,
        NSFontAttributeName : UIFont.boldSystemFont(ofSize: 14.0)
    ]
}

if you don't want use default style, you can custom your own background view and highlighted background view

Advanced Usage

Support Vertical and Horizontal direction scroll

BmoNavigationBar Auto Focus (Default is true)

BmoNavigationBar Title can set normal and highlighted attributed style

BmoViewPager infinitScroll (Default is false)

BmoViewPager presentedPageIndex can programmatically assign the present page

Custom NavigationBar animation, you can get scroll progress from BmoViewPagerDelegate

InfiniteScroll Custom NavigationBar animation

PageControl Optimized

native pageController have a default pageControl if you implement the func presentationCount(for pageViewController: UIPageViewController) -> Int and func presentationIndex(for pageViewController: UIPageViewController) -> Int but sometimes the index have a little bug, if you feel the way too, hope it help you

Native PageController continuously scroll continuously scroll using bmoViewPager

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

iOS 8.0+ Xcode 8.0+ Swift 3.0+

Installation

BmoViewPager is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "BmoViewPager"

Author

LEE ZHE YU, [email protected]

License

BmoViewPager is available under the MIT license. See the LICENSE file for more info.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.