gpt4 book ai didi

macos - 下载文件时用 X of Y 更新 NSTextField

转载 作者:行者123 更新时间:2023-12-03 17:15:28 25 4
gpt4 key购买 nike

我正在尝试使用下载时的当前(X) 总数(Y) 来更新“状态标签”NSTextField来自 NSURLConnection 的文件。下面是一些有效的代码,但不是 100%,或者不是我想要的方式。

X = runningCurrent
Y = runningTotal

以下代码正确更新了(Y)ofTotal,但是(X)当前> 到处跳转并且不增加 1、2、3 .. 等。

应用程序 Controller

- (void) updateLabelWithCurrent:(int)current ofTotal:(int)total
{
[txtStatus setStringValue:[NSString stringWithFormat:@"Downloading %i of %i",current,total]];
[txtStatus setNeedsDisplay:YES];
}

XML 数据源

for (int x = 0; x < [catArray count]; x++) 
{
/* download each file to the corresponding category sub-directory */
[[WCSWallpaperDownloader alloc]
initWithWallpaperURL: [NSURL URLWithString:[[catArray objectAtIndex:x] objectForKey:@"imageUrl"]]
andFileOutput: [NSString stringWithFormat:@"%@/%@_0%i.jpg",cat,catName,x] withCurrent:x ofTotal:[catArray count]];
}

WCS壁纸下载器

- (id)initWithWallpaperURL:(NSURL *)imageUrl andFileOutput:(NSString*)fileOutput withCurrent:(int)current ofTotal:(int)total
{
self = [super init];
if (self)
{
appController = [[ApplicationController alloc] init];

self.fileOut = fileOutput;

NSURLRequest *imageRequest =
[NSURLRequest requestWithURL:imageUrl cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:1800.0];
[[NSURLConnection alloc] initWithRequest:imageRequest delegate:self];

runningCurrent = current;
runningTotal = total;
}
return self;
}

#pragma mark NSURLConenction

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
receivedData = [[NSMutableData data] retain];
[receivedData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
[receivedData appendData:data];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
/* release the connection, and the data object */
[connection release];
[receivedData release];

NSLog(@"Connection failed! Error - %@ %@",
[error localizedDescription],
[[error userInfo] objectForKey:NSErrorFailingURLStringKey]);
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{

/* updates the status label with the current download of total objects being downloaded */
[appController updateLabelWithCurrent: runningCurrent ofTotal: runningTotal];

/* skip existing files */
if ( ! [MANAGER fileExistsAtPath:fileOut] )
{
[receivedData writeToFile:fileOut atomically:YES];
[receivedData release];
}
[[appController txtStatus] setStringValue:@""];
}

解决方案

以下代码在每个对象完成时正确递增下载状态。

- (void) incrementStatusLabelWithTotal:(int)total
{
runningCurrent++;
[txtStatus setStringValue:[NSString stringWithFormat:@"Downloading %i of %i",runningCurrent,total]];
}

最佳答案

看起来您正在一项一项地开始下载,但它们并没有以相同的顺序完成 - 因此您创建每个对象,告诉它正在加载项目 X 或 Y,但如果对象下载项目 6 完成在对象下载项目 4 之前,您的 X 将会像您所说的那样到处乱窜。

每个壁纸下载器应该只告诉appController它已经完成,并让appController保存到目前为止已下载的项目数和总数。

事实上,壁纸下载器并不真正需要知道正在发生多少次下载,或者它们是哪个特定数字。您的 XML 数据源应该告诉您的“应用程序 Controller ”下载总数,然后每个下载程序在完成时应该告诉 Controller 它已完成。

因此,您当前的 init 方法将是:

- (id)initWithWallpaperURL:(NSURL *)imageUrl andFileOutput:(NSString*)fileOutput

我不确定您是否应该每次在此方法中分配一个新的 appController 实例 - 代码的其余部分看起来应该有一个显示一个标签,实际上是下载器的委托(delegate)?也许这应该由 XML 数据源在创建每个对象时分配?

下载完成后,您的connectionDidFinishLoading方法将如下所示:

[appController downloaderDidFinishDownloading:self];

它将调用您的 appController 中的一个方法,如下所示:

-(void)downloaderDidFinishDownloading:(WCSWallpaperDownloader*)downloader
{
completedDownloads++;
[txtStatus setStringValue:[NSString stringWithFormat:@"Downloaded %i of %i",completedDownloads,totalDownloads]];
}

其中 completedDownloadstotalDownloads 是应用 Controller 类中的 ivars。

关于macos - 下载文件时用 X of Y 更新 NSTextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7990676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com