| 123456789101112131415161718192021 |
- //
- // AsyncSound.h
- // IBOSS
- //
- // Created by guan hong hou on 17/7/24.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface AsyncSound : NSObject<NSURLConnectionDataDelegate>
- {
- CGFloat allLength;
- NSMutableData * receiveData;
- NSString *urlStr;
- NSString *localPath;
- NSFileManager *fileManager;
- }
- @property (nonatomic,retain)NSURLResponse *response;
- - (void)asyncLoad :(NSString *)urlStr localPath:(NSString*) localPath;
- @end
|