Skip to content

A small download manager with pause&resume support for iphone and mac

Notifications You must be signed in to change notification settings

unixpickle/ANDownload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

To create a download

download = [[ANDownload alloc] initWithURL:[NSURL URLWithString:kTestURL]];
[download setDelegate:self];

start or resume a download
[download resume];

pause a download
[download pause];

get the progress of a download
[sender downloadProgress];

delegate methods (required)

- (void)downloadAN:(id)sender didFailWithError:(NSError *)error;
- (void)downloadAN:(id)sender didFinishDownloadingData:(NSData *)data;
- (void)downloadANDidResume:(id)sender;
- (void)downloadANProgressChanged:(id)sender;

About

A small download manager with pause&resume support for iphone and mac

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages