1
votes

Hey, I'm using NSURLRequest and the NSURLConnection to download pdf.`

NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"MyPDF.pdf"] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:10.0];
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

How could I make so I can have more than one URL Link to PDFs in the NSURLRequest line? Instead of just having one URL "MyPDF.pdf".

Thanks in advance!


Jacob L

1
What would you expect that to accomplish? - Jason Coco

1 Answers

1
votes

You can't. If you want to request multiple PDFs (or whatever), you need to make multiple requests.