Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6942703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:03:35+00:00 2026-05-27T13:03:35+00:00

Is it possible to open a pdf file from an app itself into iBooks.

  • 0

Is it possible to open a pdf file from an app itself into iBooks.

OR

any 3rd party solutions, that can use any pdf file and create a flip book thing in an app itself.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:03:36+00:00Added an answer on May 27, 2026 at 1:03 pm

    You can indeed open a PDF file from an app into iBooks (or any other installed app that can read PDF files).

    To do this, you can use the UIDocumentInteractionController

    NSString *pdfPath = @"path to your pdf file";
    NSURL *url = [NSURL fileURLWithPath:pdfPath];
    UIDocumentInteractionController *docController = [UIDocumentInteractionController interactionControllerWithURL:url];
    
    docController.delegate = self;
    [docController retain];
    // docController is released when dismissed (autorelease in the delegate method)
    
    BOOL isValid = [docController presentOpenInMenuFromRect:readPdfButton.frame inView:self.view  animated:YES];
    
    if (!isValid) {
        NSString * messageString = [NSString stringWithFormat:@"No PDF reader was found on your device. In order to consult the %@, please download a PDF reader (eg. iBooks).", yourPDFFileTitle];
    
        UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Error" message:messageString delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [alertView show];
        [alertView release];
    }
    
    ...
    
    // UIDocumentInteractionController delegate method
    - (void)documentInteractionControllerDidDismissOpenInMenu:(UIDocumentInteractionController *)controller {
         [controller autorelease];
    }
    

    The UIDocumentInteractionController will open a popover (on iPad) or an action sheet (on iPhone) with a choice of all the PDF capable apps that are installed on the device so the user can choose his favorite one he wants to read the PDF with.

    There are also a few decent PDF reader libraries you can use to open the PDF directly in your app, rather than having to switch application, one of which is VFR PDF Reader/Viewer for iOS

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Generation PDF from HTML (component for .NET) Has anyone used any open
Is it possible to open a PDF from a website in Safari in order
Is it possible that when you have a webpage, when you open the PDF,
I know its possible to open an app from mobile safari using custom URL
Hi is it possible to open a file in an external program from within
I'm using link tag to open a pdf file. when clicking that link, the
Is it possible to open or create a PDF file in a Java desktop
Is it possible to open an iPhone application or an Xcode project from the
Is it possible to open 2 documents from an xQuery and do a join
Is it possible to open a .mdf database file created in Visual Studio with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.