downloader.h
来自「TTR的一个经典游戏」· C头文件 代码 · 共 18 行
H
18 行
@interface Downloader : NSObject
{
NSString * url, * file;
int expectedBytes;
int loadedBytes;
NSURL * nsurl;
BOOL failed, finished;
NSMutableData * data;
NSString * trig;
UIApplication * app;
}
+ (id) downloadURL: (NSString *)url to: (NSString *)filename app: (UIApplication *) app trigger: (NSString *) trig;
- (id) initWithDownloadURL: (NSString *)url savingToFile: (NSString *)filename app: (UIApplication *) app trigger: (NSString *) trig;
- (float) getProgress;
- (BOOL) finished;
- (BOOL) failed;
@end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?