我有一个应用程序,我在其中使用 FTPHelper.h 和 FTPHelper.m 文件。
我正在使用 FTP 从专用服务器下载图像。
它在我的项目中运行良好,但从服务器下载的图像非常慢。
我有 50 张 4.5mb 的图片要下载,下载大约需要 4 到 5 分钟。
我在我的项目中导入了两个文件 FTPHelper.h 和 FTPHelper.m,下面是我正在使用的代码。
-(void)getdata
{
[FTPHelper sharedInstance].delegate = self;
[FTPHelper sharedInstance].uname = BASE_USERNAME;
[FTPHelper sharedInstance].pword = BASE_PASSWORD;
[FTPHelper sharedInstance].urlString = BASE_URL;
[FTPHelper list:BASE_URL];
[FTPHelper download:file];
}
有没有其他方法可以减少它的时间?
谢谢...