123456789101112131415161718192021 |
- //
- // FKRemotefileDownload.h
- // FirstLink
- //
- // Created by ascii on 16/1/8.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKDownloadRemotefile : NSObject
- + (FKDownloadRemotefile *)sharedInstance;
- +(void)asyncDownloadReactNativeSuccess:(void (^)())success
- failure:(void (^)(NSError *error))failure;
- @end
|