I would like to specify the password of a PDF file in my request. Is this possible? Currently my code is as following:
NSString *nomPdf=_pdffile.name;
NSString *path = [[NSBundle mainBundle] pathForResource:nomPdf ofType:@"pdf"];
NSURL *url;
NSURLRequest *request;
if(path !=nil){
url = [NSURL fileURLWithPath:path];
request = [NSURLRequest requestWithURL:url];
}
How can I pass the password string required of the PDF file in this code ?