UIView 2 PDF alternatives and similar libraries
Based on the "PDF" category.
Alternatively, view UIView 2 PDF alternatives based on common mentions on social networks and blogs.
-
FastPdfKit
A Static Library to be embedded on iOS applications to display pdf documents derived from Fast PDF -
PSPDFKit
Render PDF, add/edit annotations, fill forms, add/edit pages, view/create digital signatures.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of UIView 2 PDF or a related project?
README
Description
Create UIView objects using any method you like, including interface builder with Auto-layout and size classes enabled. Then generate a PDF directly from those views!
Requirements
XCode 6.4+, iOS 7.0+
Installation
In XCode, select 'Add Files To Project', and select RP_UIView_2_PDF.h
Usage
- Make a xib file. Your xib file should only consist of UILabels and/or UIImageViews and/or other UIView subviews. Use views that are 1 pixel high or wide to create lines. Set the tag of a UIView to 1 to have it draw filled or zero to draw as just a 1 pixel bordered box.
- Load your xib like so
objective-c UIView *pageOne = [[NSBundle mainBundle] loadNibNamed:@"NibNameOne" owner:self options:nil].lastObject; UIView *pageTwo = [[NSBundle mainBundle] loadNibNamed:@"NibNameTwo" owner:self options:nil].lastObject;
- Then generate your PDF like this
objective-c NSString *tempFilepath = [RP_UIView_2_PDF generatePDFWithPages:@[pageOne, pageTwo];
See demo project for details.
License
UIView_2_PDF is released under the MIT license. See 'LICENCE.md' for details.
*Note that all licence references and agreements mentioned in the UIView 2 PDF README section above
are relevant to that project's source code only.