I see in "object library" pdfView is there, but, when I click on .XIB it got disappers.How can I use this for iPhone or IPad development? Plaese provide me any example links.Thanks.
Note: Plaese do not tell me to use any 3rd party lib,because I'm already refering two.This i don't want ot use going forword.
PDFView is only for cocoa(OSX) not for iOS.
PDFKit only available in OSX.
In iOS to display pdf pages you don't want use any third party libraries, you can draw the pdf view by creating a custom view override the draw something like
Get the pdf document
In drawRect
Are you posting two questions that are pretty much the same?
A couple of minutes ago you posted this: Object library not visible when click on .XIB in xcode ios
My answer still stands, you have chosen a OSX xib NOT an iOS xib.
If you want to show a PDF in an iOS app, you could add it to a UIWebView. Have a look at this question for details: iPhone : can we open pdf file using UIWebView?