TYDownloadDelegate.h 568 B

12345678910111213141516171819202122
  1. //
  2. // TYDownloadDelegate.h
  3. // TYDownloadManagerDemo
  4. //
  5. // Created by tany on 16/6/24.
  6. // Copyright © 2016年 tany. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "TYDownloadModel.h"
  10. // 下载代理
  11. @protocol TYDownloadDelegate <NSObject>
  12. // 更新下载进度
  13. - (void)downloadModel:(TYDownloadModel *)downloadModel didUpdateProgress:(TYDownloadProgress *)progress;
  14. // 更新下载状态
  15. - (void)downloadModel:(TYDownloadModel *)downloadModel didChangeState:(TYDownloadState)state filePath:(NSString *)filePath error:(NSError *)error;
  16. @end