1

我正在尝试使用 NSURLDownload 下载 URL,但它没有开始下载。在继续之前,必须说我为此使用了 GNUStep。

我的项目大纲如下:

MyClass.h:

@interface MyClass : Object {

}

-(void)downloadDidBegin:(NSURLDownload*)download;
-(void)downloadDidFinish:(NSURLDownload*)download;

@end

主程序

int main()
{
   NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];

   NSLog(@"creating url");
   NSURL* url = [[[NSURL alloc] initWithString:@"http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSURLRequest_Class/NSURLRequest_Class.pdf"] autorelease];

   NSLog(@"creating url request");
   NSURLRequest* url_request = [[[NSURLRequest alloc] initWithURL:url] autorelease];

   NSLog(@"creating MyClass instance");
   MyClass* my_class = [[MyClass alloc] init];

   NSLog(@"creating url download");
   NSURLDownload* url_download = [[[NSURLDownload alloc] initWithRequest:url_request
                                                                delegate:my_class] autorelease];

   [pool drain];
}

我在 MyClass 中的两个函数上都有 NSLog,但它们都没有被命中。我必须做什么才能开始下载?或者这是 GNUStep 的问题?

4

1 回答 1

2

NSURLDownload 在后台下载,所以调用会initWithRequest:delegate:立即返回。

除非您的程序将控制权传递给运行循环(这对于应用程序来说是自动处理的,但对于工具来说必须手动完成),它只会执行 main() 函数的其余部分并终止。

此外,发送给您的委托的消息是从运行循环中发送的,因此即使 main() 没有立即退出,您的委托仍然不会收到downloadDidBegin:,或者downloadDidFinish:除非您的代码首先调用了其中一个NSRunLoop运行方法。

将以下行添加到您的代码中,紧接在之前[pool drain];

[[NSRunLoop currentRunLoop] run];

有关运行循环的更多信息,请查看线程编程指南

于 2010-02-22T14:17:02.323 回答