AsyncSound.h 507 B

123456789101112131415161718192021
  1. //
  2. // AsyncSound.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 17/7/24.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface AsyncSound : NSObject<NSURLConnectionDataDelegate>
  10. {
  11. CGFloat allLength;
  12. NSMutableData * receiveData;
  13. NSString *urlStr;
  14. NSString *localPath;
  15. NSFileManager *fileManager;
  16. }
  17. @property (nonatomic,retain)NSURLResponse *response;
  18. - (void)asyncLoad :(NSString *)urlStr localPath:(NSString*) localPath;
  19. @end