PSPDFConversionOperation
Objective-C
@interface PSPDFConversionOperation : NSOperation
Swift
class ConversionOperation : Operation
PSPDFConversionOperation
is the base class for all PDF conversion operations.
Warning
Do not create instances of this class or its subclasses. They are intended to be initiated internally byPSPDFProcessor
.
-
Unavailable
Not the designated initializer
Undocumented
Declaration
Objective-C
PSPDF_EMPTY_INIT_UNAVAILABLE
-
Unavailable
Not the designated initializer
Undocumented
Declaration
Objective-C
PSPDF_EMPTY_INIT_UNAVAILABLE
-
Output URL, if any. Must be a file URL.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSURL *outputURL;
Swift
var outputURL: URL? { get }
-
Output data, if no
outputURL
was given and no error occurred.Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSData *outputData;
Swift
var outputData: Data? { get }
-
Error, if something went wrong.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSError *error;
Swift
var error: Error? { get }