Codecademy / CCListView

CCListView is a highly customizable sequential view container.
MIT License
9 stars 3 forks source link

CCListView

Pod Version Pod Platform Pod License Travis Build Status

CCListView is a highly customizable sequential view container. It can be configured to:

You can build CCListViews that contain CCListViews (that contain CCListViews...) and they even support scrolling views within scrolling views.

screenshot1

Installation

CCListView is available through cocoapods, to install simple add the following line to your PodFile:

  pod "CCListView"

Alternatively you can clone the github repo.

Setup

Once you've installed the class:

    #import <CCListView/CCListView.h>
    CCListView *listView = [ [CCListView alloc] initWithFrame:(CGRect)frame horizontal:(BOOL)horizontal scrolling:(BOOL)scrolling];

Passing YES into horizontal will result in content being arranged horizontally left to right, passing NO will result in content being arranged vertically from top to bottom.

Passing YES into scrolling will enable scrolling within your list view, passing NO will disable scrolling.

Contributing

CCListView is a simple utility class, as such the class interface has largely been built out of need. If you have any ideas, suggestions or bugs to report please create an issue labeled feature or bug (check to see if the issue exists first please!). Or suggest a pull request!