I am working on cocoa now a days so, little bit new to mac development.
I want to open a PDF from my server. Is this possible with PDFView?
If anyone guide me in this then it will be very helpful for me.
Is there any sample code to open a PDF file in PDFView ?

Thanks in advance..!!!

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I got answer..

at least working for me.. :)

NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"1.pdf" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:urlStr];
PDFDocument *pdfDoc = [[PDFDocument alloc] initWithURL:url];
[pdfView setDocument:pdfDoc];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.