Coder Social home page Coder Social logo

msdgwzhy6 / dymrollingbanner Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dymx101/dymrollingbanner

1.0 2.0 0.0 2.21 MB

Awesome rolling banner control mostly for an app's homepage.

License: MIT License

Ruby 0.95% Objective-C 89.50% Shell 9.55%

dymrollingbanner's Introduction

DYMRollingBanner

DYMRollingBanner is a clean and easy-to-use banner rolling control for your app's homepage screen which need to show some rolling banners.

DEMO Gif

Why

Why do I write this ? Well...actually, I've been searching for a scrolling banner view at github for a while, but no luck since some of the code I found are too old to support Autolayout, others don't scrolls infinitely... none of them satisfied me. Then, I decided to do it myself, to write a good one...and here you go...

Features

  • Infinite scrolling, which mean it return to show the first banner when ended with the last one.
  • Supports both local and remote images.
  • Paused on dragging and resumes on releasing when it's auto rolling.
  • Implemented a memory cache which makes it lightning fast and less memory consuming.
  • Block based event handling.
  • 100% compatible with AutoLayout.
  • Writen with clean code and very easy to use.

Installation

(from CocoaPods)

CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like DYMRollingBanner in your projects. Simply add the following line to your Podfile:

pod 'DYMRollingBanner', '~> 2.1.3'

(direct installation)

Just copy these source files into you project:

  • DYMRollingBannerVC.h
  • DYMRollingBannerVC.m
  • DYMBannerVC.h
  • DYMBannerVC.m
  • DYMBannerPool.h
  • DYMBannerPool.m

Usage

Unlike many other banner scrolling controls, DYMRollingBanner doesn't use UIScrollingView or its subclasses UITableview or UICollectionView, instead it take full advantage of UIPageViewController which is natually an INFINITE controller.

To integrate DYMRollingBanner, firstly, you need to copy the assciated files into your project, and import DYMRollingBannerVC.h file:

#import <DYMRollingBanner/DYMRollingBannerVC.h>

Secondly, Create a DYMRollingBannerVC object.

DYMRollingBannerVC      *_rollingBannerVC;

_rollingBannerVC = [DYMRollingBannerVC new];

Then, add the DYMRollingBannerVC object as the child view controller of the host controller.

[self addChildViewController:_rollingBannerVC];
[self.view addSubview:_rollingBannerVC.view];
    
    // The code below lays out the _rollingBannerVC's view using Masonry
    [_rollingBannerVC.view mas_makeConstraints:^(MASConstraintMaker *make) {
        make.leading.top.and.right.equalTo(self.view);
        make.height.equalTo(@200);
    }];
    
 [_rollingBannerVC didMoveToParentViewController:self];

Finally, feed it with you image URLs or UIImage object:

_rollingBannerVC.rollingInterval = 5;
_rollingBannerVC.rollingImages = @[@"http://www.drpsychmom.com/wp-content/uploads/2014/10/large_4278047231.jpg"
                                , @"https://c2.staticflickr.com/4/3345/5832660048_55f8b0935b.jpg"
                                , @"http://epaper.syd.com.cn/sywb/res/1/20080108/42241199752656275.jpg"
                                , [UIImage imageNamed:@"001"]    // Local Image
                                , [UIImage imageNamed:@"002"]    // Locak Image
                                ];
        
  [_rollingBannerVC addBannerTapHandler:^(NSInteger whichIndex) {
        NSLog(@"banner tapped, index = %@", @(whichIndex));
  }];
        
  [_rollingBannerVC startRolling];

And you are good to go!

Associated Classes

  • DYMRollingBannerVC is the view controller which rolls a group of banner images.
  • DYMBannerVC is the host view controller of each image, it's internally used by the DYMRollingBannerVC.
  • DYMBannerPool is the memory pool from which you dequeue a banner from, it's internally used by the DYMRollingBannerVC.

Notice

DYMRollingBanner uses SDWebImage for image downloading, so if you install DYMRollingBanner using cocopods, this library will be installed too, but if you prefer to manually copy the source files into your project, make sure also to include SDWebImage.

Contributing to this project

If you have feature requests or bug reports, feel free to help out by sending pull requests, or contact [email protected].

Credits

DYMRollingBanner is brought to you by Yiming Dong.

Logo

dymrollingbanner's People

Contributors

dymx101 avatar

Stargazers

Angus H. avatar

Watchers

 avatar  avatar

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.