BrickView is a simple dynamic grid layout view for iOS like Pinterest. usage of BrickView is like UITableViewDelegate and UITableViewDatasource.
This package has all the documentation and demos to get you started.
There are two ways to use this in your project:
-
Copy
BrickView/*.{h.m}
into your project -
Install with CocoaPods to write Podfile
platform :ios
pod 'BrickView'
BrickView uses a simple methodology. It defines a delegate and a data source, its client implement.
BrickViewDelegate and BrickViewDataSource are like UITableViewDelegate and UITableViewDatasource. BrickViewDelegate has UIScrollViewDelegate
's protocol.
Reset cells and redisplays visible cells.
- (void)reloadData;
If BrickView doesnt reset visible cells and displays new cells, uses updateData
.
- (void)updateData;
- import
BrickView.h
- implement
BrickViewDataSource
andBrickViewDelegate
's methods - register
UINib
's object with idenfiter for re-use
#import "BrickView.h"
@interface ExampleViewController ()
<BrickViewDataSource, BrickViewDelegate>
@end
@implementation ExampleViewController
- (void)viewDidLoad
{
[super viewDidLoad];
BrickView *brickView = [[BrickView alloc]initWithFrame:self.view.bounds];
brickView.dataSource = self;
brickView.delegate = self;
UINib *nib = [UINib nibWithNibName:@"Cell" bundle:nil];
[self.brickView registerNib:nib forCellReuseIdentifier:@"Cell"];
[self.brickView reloadData];
}
- (CGFloat)brickView:(BrickView *)brickView heightForCellAtIndex:(NSInteger)index
{
return 100.;
}
- (NSInteger)numberOfColumnsInBrickView:(BrickView *)brickView
{
return 3;
}
- (NSInteger)numberOfCellsInBrickView:(BrickView *)brickView
{
return [self.list count];
}
- (BrickViewCell *)brickView:(BrickView *)brickView cellAtIndex:(NSInteger)index
{
static NSString *CellIdentifier = @"Cell";
BrickViewCell *cell = [brickView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = @"text";
return cell;
}
BrickView is available under the MIT license.