PSPDFDocumentInfoCoordinatorDelegate

Objective-C

@protocol PSPDFDocumentInfoCoordinatorDelegate<NSObject>

@optional

/// Notifies the delegate that the `PSPDFDocumentInfoViewController` has discarded the pending changes
/// and the controller is no longer in edit mode.
///
/// @param infoCoordinator     The coordinator.
/// @param infoViewController  The `PSPDFDocumentInfoViewController` that cancelled the update.
- (void)documentInfoCoordinator:(PSPDFDocumentInfoCoordinator *)infoCoordinator infoViewControllerDidCancelDocumentInfoUpdate:(PSPDFDocumentInfoViewController *)infoViewController;

/// Notifies the delegate that the info view controller has applied the specified updates to the underlying document. Use this method to update the UI if required.
///
/// @param infoCoordinator     The coordinator.
/// @param infoViewController  The controller that applied the updates.
- (void)documentInfoCoordinator:(PSPDFDocumentInfoCoordinator *)infoCoordinator infoViewControllerDidCommitUpdates:(PSPDFDocumentInfoViewController *)infoViewController;

@end

Swift

protocol PSPDFDocumentInfoCoordinatorDelegate : NSObjectProtocol

Undocumented