Giter Site home page Giter Site logo

venseparatorview's Introduction

VENSeparatorView

Build Status

VENSeparatorView makes it easy create custom separators on iOS. It's used in the Venmo app to represent transfer stories.

alt text - alt text

Installation

The easiest way to get started is to use CocoaPods. Just add the following line to your Podfile:

pod 'VENSeparatorView', '~> 1.0.0'

General Usage

Import VENSeparatorView.h

Create an instance of UISeparatorView or a UISeparatorView subclass using its initWithFrame:topLineSeparatorType:bottomLineSeparatorType initializer and add it as a subview.

VENSeparatorType options are:

VENSeparatorTypeStraight,
VENSeparatorTypeJagged,
VENSeparatorTypeNone

UITableViewCell Provider

Making jagged cells in a UITableView is simple using the included VENSeparatorTableViewCellProvider

Import #import "VENSeparatorTableViewCellProvider.h" in your UITableViewDataSource and conform this class to the VENSeparatorTableViewCellProviderDelegate protocol isCellJaggedAtIndexPath: method.

Example:

// Specifies that all cells with odd row index are jagged.
- (BOOL)isCellJaggedAtIndexPath:(NSIndexPath *)indexPath
{
	return (indexPath.row % 2);
}

Set your UITableView's separatorStyle property to UITableViewCellSeparatorStyleNone

Create a VENSeparatorTableViewCellProvider property:

@property (nonatomic, strong) VENSeparatorTableViewCellProvider *separatorProvider;

In this class's init method, or in the viewDidLoad method if this class is a UIViewController subclass, instantiate the VENSeparatorTableViewCellProvider property using its initWithStrokeColor:fillColor:delegate: method.

self.separatorProvider = [[VENSeparatorTableViewCellProvider alloc] initWithStrokeColor:[UIColor grayColor]
                                                                              fillColor:[UIColor lightGrayColor]
                                                                               delegate:self];

At the end of your data source's tableView:cellForRowAtIndexPath: method apply separators to the UITableViewCell with the VENSeparatorTableViewCellProvider's applySeparatorsToCell:atIndexPath:inTableView:cellHeight:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell;
    // ...

    [self.separatorProvider applySeparatorsToCell:cell atIndexPath:indexPath inTableView:tableView cellHeight:0];
    return cell;
}

Sample Project

Check out the sample project in this repo for sample usage.

Contributing

We'd love to see your ideas for improving this library! The best way to contribute is by submitting a pull request. We'll do our best to respond to your patch as soon as possible. You can also submit a new Github issue if you find bugs or have questions. :octocat:

venseparatorview's People

Contributors

ayanonagon avatar dasmer avatar

Watchers

James Cloos avatar Brian Nguyen 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.