Some test text!
iOS / Guides
There are a few view modes which can be adjusted to provide an optimal presentation such as layout, fit, or reflow.
Reflow makes the document more flexible and easier to read, especially on small devices. Apryse is able to extract the reflowable layout of each page of a PDF document as an HTML file. In this guide, we explain how simple it is to show a widget that allows the user to swipe left or right through the pages of the document to see reflowable document pages.
The PTReflowViewController
class allows the user to flip left and right through the reflowable layout of pages in a certain PDF document.
The reflow control is part of the Tools library, so make sure you have added the Tools library to your project .
To create a new reflow view controller instance and display it from another view controller, supply a PTPDFViewCtrl
instance to the PTReflowViewController
designated initializer:
// Initialize reflow view controller with a PTPDFViewCtrl instance.
let reflowViewController = PTReflowViewController(pdfViewCtrl: pdfViewCtrl)
// Set the current view controller as the reflow view controller's delegate.
reflowViewController.delegate = self
let navigationController = UINavigationController(rootViewController: reflowViewController)
self.present(navigationController, animated: true, completion: nil)
That is everything you need to have a simple reflow control. Next, we will go through advanced features.
It is possible to change the scale of text in the reflow view controller. The default text scale is 1.0 and can be changed with the scale
property.
Similar to the PDFViewCtrl , tapping on the left or right edge of the reflow view controller can change the page. This behavior is disabled by default and can be enabled with the turnPageOnTap
property.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales