Assisting Views
-
Scroll view subclass that listens to keyboard and half modal events and moves itself up accordingly.
See moreDeclaration
Objective-C
@interface PSPDFAvoidingScrollView : UIScrollView
Swift
class AvoidingScrollView : UIScrollView
-
A collection of useful extensions to
See moreUIButton
.Declaration
Objective-C
@interface PSPDFButton : UIButton
Swift
class PDFButton : UIButton
-
Base class to show a semi-transparent, rounded label.
You can use UIAppearance to customize the main properties.
[PSPDFLabelView appearance].labelStyle = PSPDFLabelStyleFlat; [PSPDFLabelView appearance].backgroundColor = [UIColor colorWithWhite:0.1 alpha:0.8]; [PSPDFLabelView appearance].textColor = UIColor.whiteColor;
Note
The background color can be customized by setting the standardbackgroundColor
UIView
property. If you want to customize the background color, it is recommended that you usePSPDFLabelStyleFlat
, as using the blur effect with a non-translucent background color might produce unexpected results.If you are customizing this view, you might also want to apply similar changes to
See morePSPDFBackForwardButton
.Declaration
Objective-C
@interface PSPDFLabelView : UIView
Swift
class PDFLabelView : UIView
-
A view that shows borders around selected annotations, with handles the user can use to resize the annotation. The handle and border color is determined by the
See moretintColor
property inherited fromUIView
.Declaration
Objective-C
@interface PSPDFResizableView : UIView <PSPDFOverridable>
Swift
class ResizableView : UIView, Overridable
-
Simple rounded label.
See moreDeclaration
Objective-C
@interface PSPDFRoundedLabel : UILabel
Swift
class RoundedLabel : UILabel
-
Cell that shows a selection status.
See moreDeclaration
Objective-C
@interface PSPDFSelectableCollectionViewCell : UICollectionViewCell
Swift
class SelectableCollectionViewCell : UICollectionViewCell
-
Base class that shows centered labels and a spinner label.
See moreDeclaration
Objective-C
@interface PSPDFSpinnerCell : PSPDFTableViewCell
Swift
class PDFSpinnerCell : PDFTableViewCell
-
Base class for table views in PSPDFKit with various helpers. Enabled unlimited lines for textLabel and detailTextLabel.
See moreDeclaration
Objective-C
@interface PSPDFTableViewCell : UITableViewCell
Swift
class PDFTableViewCell : UITableViewCell
-
Displays progress indication with a title.
See moreDeclaration
Objective-C
@interface PSPDFProgressLabelView : UIView
Swift
class ProgressLabelView : UIView