Skip to content

danielebogo/DBImageView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alt text

A simple object to load images asynchronously

##Getting Started

Installation

The recommended approach for installating DBImageView is via the CocoaPods package manager, as it provides flexible dependency management and dead simple installation.

Podfile

platform :ios, '6.0'
pod 'DBImageView', '~> 1.0'

Integration

DBImageView has a simple integration:

#import "DBImageView.h"

Add DBImageView:

DBImageView *imageView = [[DBImageView alloc] initWithFrame:(CGRect){ 10, 10, 60, 60 }];

Set the remote image path:

[imageView setImageWithPath:@"remote_image_URL"];

Options

You can set a placeholder:

[imageView setPlaceHolder:[UIImage imageNamed:@"Placeholder"]];

If you use a collection or a table, trigger the load action when you want

- (void) scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
	[DBImageView triggerImageRequests:NO];
}

- (void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
	[DBImageView triggerImageRequests:YES];
}

##iOS Min Required 6.0

##Version 1.3.1

##Created By Daniele Bogo

About

A simple object to load images asynchronously

Resources

License

Stars

Watchers

Forks

Packages

No packages published