orucanil / EndlessTableView

Endless - Infinite & Double Table Together Parallax Animation & Auto Scrolling (UITableView)

Home Page:https://www.linkedin.com/in/annul

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EndlessTableView

Endless - Infinite & Double Table Together Parallax Animation & Auto Scrolling

Display Visual Examples


Visual1

Installation

To use the EndlessTableView class in an app, just drag the EndlessTableView class files (demo files and assets are not needed) into your project.

Properties

The EndlessTableView has the following properties (note: for iOS, UITableView when using properties):

@property (nonatomic) BOOL enableEndlessScrolling 

The default value is YES.

@property (nonatomic) BOOL enableAutoScrolling;

The default value is NO.

@property (nonatomic) CGFloat autoScrollValue;

This property can be used to set the table scrolling at a constant speed. A value of 1.0 would scroll the carousel forwards at a rate of one item per second. The autoscroll value can be positive or negative and defaults to 0.0 (stationary). Autoscrolling will stop if the user interacts with the table, and will resume when they stop. The default value is 0.0f.

@property (nonatomic) CGFloat differenceRateValue;

If attachedTableView and contentSize of this event of an equal, differenceRateValue processing are taken. The default value is 1.0f.

@property (nonatomic,weak) EndlessTableView *attachedTableView;

The default value is nil.

How to use ?

Visual4

#import "EndlessTableView.h"

@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>

@property (weak, nonatomic) IBOutlet EndlessTableView *tableViewProduct;
@property (weak, nonatomic) IBOutlet EndlessTableView *tableViewCampaign;

...

- (void)loadView
{
[super loadView];

self.tableViewProduct.attachedTableView = self.tableViewCampaign;
self.tableViewProduct.enableAutoScrolling = YES;
self.tableViewProduct.differenceRateValue = 1.3f;

[_tableViewProduct reloadData];

[_tableViewCampaign reloadData];

}

...

#pragma mark - TableView Datasource & Delegate

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

NSInteger numberOfRows = 0;

if (tableView == _tableViewCampaign)
numberOfRows = 10;
else if (tableView == _tableViewProduct)
numberOfRows = 8;

return numberOfRows;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

UITableViewCell *cell =  [tableView dequeueReusableCellWithIdentifier:@"EndlessTableViewCell"];

if (tableView == _tableViewCampaign)
{

}
else if (tableView == _tableViewProduct)
{

}
return cell;

}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

}

OR

#import "EndlessTableView.h"

@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>

...

- (void)loadView
{
[super loadView];

EndlessTableView *tableViewCampaign = [[EndlessTableView alloc]initWithFrame:CGRectMake([UIScreen mainScreen].bounds.size.width / 2, 0.0f, [UIScreen mainScreen].bounds.size.width / 2, [UIScreen mainScreen].bounds.size.height)];
tableViewCampaign.tag = 0;
tableViewCampaign.dataSource = self;
tableViewCampaign.delegate = self;

EndlessTableView *tableViewProduct = [[EndlessTableView alloc]initWithFrame:CGRectMake(0.0f, 0.0f, [UIScreen mainScreen].bounds.size.width / 2, [UIScreen mainScreen].bounds.size.height)];
tableViewProduct.tag = 1;
tableViewProduct.dataSource = self;
tableViewProduct.delegate = self;

tableViewProduct.attachedTableView = tableViewCampaign;
tableViewProduct.enableAutoScrolling = YES;
tableViewProduct.differenceRateValue = 1.3f;

}

...

#pragma mark - TableView Datasource & Delegate

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

NSInteger numberOfRows = 0;

if (tableView.tag == 0) // Campaign TableView
numberOfRows = 10;
else if (tableView.tag == 1) // Product TableView
numberOfRows = 8;

return numberOfRows;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

UITableViewCell *cell =  [tableView dequeueReusableCellWithIdentifier:@"EndlessTableViewCell"];

if (tableView.tag == 0) // Campaign TableView
{

}
else if (tableView.tag == 1) // Product TableView
{

}
return cell;

}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

}

Build and run the project files. Enjoy more examples!

About

Endless - Infinite & Double Table Together Parallax Animation & Auto Scrolling (UITableView)

https://www.linkedin.com/in/annul

License:MIT License


Languages

Language:Objective-C 100.0%