ASIHTTPRequest 断点续传
最近学习ASIHTTPRequest如何使用,所以利用ASIHTTPRequest自身的功能,写了个可断点下载的小demo 我利用tableview作为下载列表,所有自己custom了一个cell,用来控制下载 enum DownloadStatus { DownloadNotStart = 0, Downloading, DownloadPause, DownloadFinish};@interface DownloadFileListTableViewCell : UITableViewCell <ASIHTTPRequestDelegate, ASIProgressDelegate>{ UIProgressView *_progressView; UIButton *_controlButton; UILabel *_sizeTip; ASIHTTPRequest *_asiRequest; NSURL *_oriURL; enum DownloadStatus _downloadStatus; NSString *_saveFilePath; NSString *_tmpFilePath; long long _curSize; long long _totalSize;} 最新的 ASIHTTPRequest 自己有一个支持断点下载的方法, [_asiRequest