嘿,我正在使用 NSURLRequest 和 NSURLConnection 来下载 pdf。`
NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"MyPDF.pdf"] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:10.0];
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
我怎样才能使我可以在 NSURLRequest 行中有多个指向 PDF 的 URL 链接?而不是只有一个 URL “MyPDF.pdf”。
提前致谢!
雅各布 L