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 6212907
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:35:58+00:00 2026-05-24T06:35:58+00:00

I am a bit new to iOS development and have a fairly general question

  • 0

I am a bit new to iOS development and have a fairly general question regarding iOS and PDFs. I know there is built-in PDF support in iOS4+, but is it possible to open a PDF for viewing then maybe make notes on it and save it again?

I’m sure there are options like opening the PDF as a background and having a “writable” overlay over it, saving it as an image then writing it out as a PDF, but I was wondering if there was a more “inherent” way to do so.

Thanks.

  • 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-24T06:35:58+00:00Added an answer on May 24, 2026 at 6:35 am

    For searching, see this answer: Text searching PDF

    For the overlay, you can just draw the pdf youself, and add you own overlay:

        UIGraphicsBeginImageContextWithOptions(pageRect.size, NO, 0.0);
        CGContextRef context = UIGraphicsGetCurrentContext();
    
        CGContextSaveGState(context);
        // Flip the context so that the PDF page is rendered
        // right side up.
        CGContextTranslateCTM(context, 0.0, pageRect.size.height);
        CGContextScaleCTM(context, 1.0, -1.0);
    
        // Scale the context so that the PDF page is rendered 
        // at the correct size for the zoom level.
        CGContextScaleCTM(context, pdfScale, pdfScale); 
        CGContextTranslateCTM(context, -pageRect.origin.x, -pageRect.origin.y);
        CGContextDrawPDFPage(context, pdfPage);
        CGContextRestoreGState(context);
    
        // callback for custom overlay drawing (example_
        if ([document shouldDrawOverlayRectForSize:size]) {
            [document drawOverlayRect:pageRect inContext:context forPage:page zoomScale:1.0 size:size];    
        }
    

    Update: Just a note, pdf can contain rotation information, so the actual drawing should read that metadata and transform the context accordingly.

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

Sidebar

Related Questions

A bit new to this whole web development thing still. This question will be
I'm a bit new to .Net development, been working in Java for some time
I'm a bit new to SQL and have trouble constructing a select statement. I
I am a bit new to reusable plugins for jquery. I have ran across
I am a bit new to the Devel::Cover module, but have found it very
So I'm new to iOS development and am doing all I can to learn
I'm still a bit new on jquery selection syntax (and jquery in general). I'm
I´m playing a little bit with the New iOS 5 SDK and Xcode 4.3.3
is there some new framework additions for doing something like this in iOS 4
I'm a bit new to programming for iOS, and I'm having some trouble linking

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.