Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
$349

Single App License

1 application Binary restricted distribution 6 months support
$1,049

Developer License

5 applications Binary restricted distribution 6 months support
$2,499

Distributor License

Unlimited projects Source and binary distribution 1 year support
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

(18 ratings)

PDFTouch SDK for iOS

Featured PDFTouch SDK for iOS
Developed by Kemal Taskin, Released Apr 12, 2012

A fast and customizable framework for rendering PDF files in your iOS apps. With PDFTouch SDK you can build PDF reader apps or use it as a PDF viewer in your existing apps.

Objective-C

Tags: ibooks , pdf , reader , sdk

A Powerful PDF Rendering Framework for iOS Software Developers!

We know how hard it is to get PDF rendering done right on the iOS platform. The small memory and slow CPU conditions make it very hard to achieve blazing fast PDF rendering. You can now rely on PDFTouch SDK for rendering PDF pages in your apps and save at least a month worth of development costs!

PDFTouch SDK offers you a solid framework that's easy to use and customize to your needs. With just a couple of lines of code you can create a PDF view controller and present it in your app! The user interface is very similar to the iBooks app and also features a grid display for page thumbnails. For more details please refer to the Features section.

Newsstand solution for magazine publishers!

Be sure to check out the iPad Book / Newsstand PDF starter Kit if you want a complete newsstand solution that works with PDFTouch SDK out of the box!

Download the FREE Trial now and see for yourself how simple it is to add PDF rendering functionality to your app!

PDFTouch SDK for iOS

Back to top

Documentation

Code Documentation

All public classes of PDFTouch SDK are documented using appledoc. See the documentation for further information.

Requirements

The source code of PDFTouch SDK is developed on Xcode 4.5.1 with iOS Base SDK 6.0. PDFTouch SDK works on a deployment target of iOS 5 or greater on armv7 and armv7s and can be used in ARC and non-ARC projects.

Integration

PDFTouch SDK can be integrated in two ways into your app.

1. Add the binary PDFTouch.framework

  • Drag PDFTouch.framework into the "Frameworks" group of your Xcode project.
  • Add the required libraries as shown in the screenshot below.
  • Add PDFTouch.bundle to your projects resources as shown in the screenshot below.
  • Open the Build Settings tab and apply the following changes:
    • Other Linker Flags -> -all_load -ObjC
  • Add the following import statement everywhere you want to use PDFTouch SDK: #import <PDFTouch/PDFTouch.h> Binary

2. Add PDFTouch.xcodeproj as a dependency

  • Copy the whole PDFTouch folder into your project's root folder.
  • Drag PDFTouch.xcodeproj into the "Frameworks" group of your Xcode project.
  • Add PDFTouch as a target dependency.
  • Add the required libraries as shown in the screenshot below.
  • Add PDFTouch.bundle to your projects resources as shown in the screenshot below.
  • Open the Build Settings tab and apply the following changes:
    • Other Linker Flags -> -all_load -ObjC
    • Add the following paths to "Header Search Paths":
      • "PDFTouch/**"
  • Add the following import statement everywhere you want to use PDFTouch SDK: #import "PDFTouch.h" Source

Sample Usage

1. Create a YLDocument instance for the PDF file you want to display.

NSString *path = [[NSBundle mainBundle] PathForResource:@"Developers" withExtension:@"pdf"];
YLDocument *document = [[[YLDocument alloc] initWithFilePath:url] autorelease];

2. Create a YLPDFViewController instance and present it as a modal or child view controller.

YLPDFViewController *v = [[YLPDFViewController alloc] initWithDocument:document];
[v setDocumentMode:YLDocumentModeDouble];
[v setDocumentLead:YLDocumentLeadRight];
[v setPageCurlEnabled:YES];
[v setModalPresentationStyle:UIModalPresentationFullScreen];
[v setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
[self.navigationController presentModalViewController:v animated:YES];
[v release];
Back to top

Features & Package

Features

  • Fast multithreaded PDF rendering using Grand Central Dispatch.
  • Highly optimized caching algorithm.
  • Offline pre-rendering of pdf pages at different sizes integrated with the caching system.
  • Thumbnail grid display.
  • Pinch to zoom.
  • Double tap to zoom in and out.
  • Text search with highlighting.
  • Outline view (TOC).
  • Bookmarks.
  • Double page mode with left or right lead.
  • Page curl animations.
  • Retina Display ready.
  • Optimized for both the iPhone and iPad.
  • Includes a demo Xcode project demonstrating the common usage of the SDK's features.

Annotations Support

  • Page links
  • Web links
  • Mail links
  • Video
  • Audio
  • Maps
  • Web pages
  • Custom overlays

Package

  • Complete source code of PDFTouch SDK.
  • Demo Xcode project.
  • Documentation with integration instructions.
  • Technical appledoc style documentation.
View all 18 reviews »

User Reviews

  • Andy Ward 6 days ago
    Excellent component with fantastic support.
    Flag
    Was this helpful? Yes No
  • Christian Fruehwirth 2 weeks ago
    Excellent, well written component that saved us a lot of time. Also very active & responsive support.
    Flag
    Was this helpful? Yes No
  • Andre Prior 3 months ago
    Awesome Product and very good support. Instantly getting help with all my little issues since iam not a professional coder.
    Flag
    Was this helpful? Yes No
Read all 243 comments »

Questions & Comments


Or enter your name and Email
  • xytu 10 hours ago
    How can i make the current pdf zoom to fit. I need this if i hide the root-viewcontroller of a split view and want to show the detail view pdf with fit-to-zoom. Thank you for your help :)
    • Kemal Taskin Developer 25 minutes ago
      Hi,

      There's currently no such function in YLPDFViewController.
  • Monish Kumar 19 hours ago
    How can I navigate from one PDF File to another pdf file??
    • Kemal Taskin Developer 17 hours ago
      Hi Monish,

      PDFTouch SDK does not support links to other PDF files. So there's no way to navigate from one PDF to another PDF within YLPDFViewController.
    • Monish Kumar 2 hours ago
      @Kemal Taskin: Is it possible to customize the YLPDFViewController to acheive this?
    • Monish Kumar 2 hours ago
      @Kemal Taskin: Is it possible to do like this : I will create an annotation to some part of the text and when user tapped onto the text then I call another pdf file with the page number that I want to view.
    • Kemal Taskin Developer 23 minutes ago
      Hi Monish,

      Everything is possible when you have the source code in hand but you'll have to customize YLPDFViewController and add support for your new annotation type.
  • SATISH THOTA 2 weeks ago
    Hi All,
    I need an Arabic style(left to right) any methods for doing this ? thanks
    satish
You must be logged-in to vote. Log-in to your account or register now.