PSPDFThumbnailTextCell
Objective-C
@interface PSPDFThumbnailTextCell : PSPDFNonAnimatingTableViewCell
Swift
class ThumbnailTextCell : NonAnimatingTableViewCell
Table view cell that shows a thumbnail image along with a few text elements.
-
Text field that is shown on top of the cell. Can be used for displaying a title. Non-editable by default.
Declaration
Objective-C
@property (nonatomic, readonly) UITextField *_Nonnull textField;
Swift
var textField: UITextField { get }
-
Label that is shown below the text field. Uses a secondary text color.
Declaration
Objective-C
@property (nonatomic, readonly) UILabel *_Nonnull detailLabel;
Swift
var detailLabel: UILabel { get }
-
Label that is shown next to the text field, on the trailing side of the cell.
Declaration
Objective-C
@property (nonatomic, readonly) UILabel *_Nonnull adornmentLabel;
Swift
var adornmentLabel: UILabel { get }
-
Image view that will be shown next to the text field and the detail label on the leading edge of the cell.
Note
The cell observes the image value of this property, and applies stylistic changes based upon its value. If the image is set, the image view shows a border around the image and adds shadow behind it. If no image is not set the border and the shadow are removed.Declaration
Objective-C
@property (nonatomic, readonly) UIImageView *_Nonnull pageImageView;
Swift
var pageImageView: UIImageView { get }