Quartz macOS 10.12 to 10.13 API Differences

../Frameworks/PDFKit.framework/Headers/PDFAction.h
Declaration
From- (nonnull NSString *)type
To@property (nonatomic, readonly, nonnull) NSString *type

../Frameworks/PDFKit.framework/Headers/PDFActionGoTo.h
Declaration
From@property (nonatomic, retain, nonnull) PDFDestination *destination
To@property (nonatomic, strong, nonnull) PDFDestination *destination

../Frameworks/PDFKit.framework/Headers/PDFActionNamed.h
Declaration
From@property (nonatomic, assign) PDFActionNamedName name
To@property (nonatomic) PDFActionNamedName name

../Frameworks/PDFKit.framework/Headers/PDFActionRemoteGoTo.h
Declaration
From- (nullable instancetype)initWithPageIndex:(NSUInteger)pageIndex atPoint:(NSPoint)point fileURL:(nonnull NSURL *)url
To- (nonnull instancetype)initWithPageIndex:(NSUInteger)pageIndex atPoint:(NSPoint)point fileURL:(nonnull NSURL *)url

Declaration
From@property (nonatomic, assign) NSUInteger pageIndex
To@property (nonatomic) NSUInteger pageIndex

Declaration
From@property (nonatomic, assign) NSPoint point
To@property (nonatomic) NSPoint point

Declaration
From@property (nonatomic, retain, nonnull) NSURL *URL
To@property (nonatomic, copy, nonnull) NSURL *URL

../Frameworks/PDFKit.framework/Headers/PDFActionResetForm.h
Declaration
From@property (nonatomic, assign, nonnull) NSArray<NSString *> *fields
To@property (nonatomic, copy, nullable) NSArray<NSString *> *fields

Declaration
From@property (nonatomic, assign) BOOL fieldsIncludedAreCleared
To@property (nonatomic) BOOL fieldsIncludedAreCleared

../Frameworks/PDFKit.framework/Headers/PDFActionURL.h
Declaration
From- (nullable instancetype)initWithURL:(nonnull NSURL *)url
To- (nonnull instancetype)initWithURL:(nonnull NSURL *)url

Declaration
From@property (nonatomic, retain, nonnull) NSURL *URL
To@property (nonatomic, copy, nonnull) NSURL *URL

../Frameworks/PDFKit.framework/Headers/PDFAnnotation.h
Removed kPDFAnnotationKey_AppleExtras
Declaration
From@property (nonatomic, readwrite, weak, nullable) PDFPage *page
To@property (nonatomic, weak, nullable) PDFPage *page

Declaration
From@property (nonatomic, readonly, nullable) NSString *type
To@property (nonatomic, copy, nullable) NSString *type

Declaration
From@property (nonatomic, readwrite) NSRect bounds
To@property (nonatomic) NSRect bounds

Declaration
From@property (nonatomic, assign) BOOL shouldDisplay
To@property (nonatomic) BOOL shouldDisplay

Declaration
From@property (nonatomic, assign) BOOL shouldPrint
To@property (nonatomic) BOOL shouldPrint

DeclarationAvailability
From@property (nonatomic, retain, nullable) NSDate *modificationDateDeprecated
To@property (nonatomic, copy, nullable) NSDate *modificationDateAvailable

DeclarationAvailability
From@property (nonatomic, retain, nullable) NSString *userNameDeprecated
To@property (nonatomic, copy, nullable) NSString *userNameAvailable

DeclarationAvailability
From@property (nonatomic, retain, nullable) PDFAnnotationPopup *popupDeprecated
To@property (nonatomic, strong, nullable) PDFAnnotationPopup *popupAvailable

DeclarationAvailability
From@property (nonatomic, retain, nullable) PDFBorder *borderDeprecated
To@property (nonatomic, strong, nullable) PDFBorder *borderAvailable

DeclarationAvailability
From@property (nonatomic, retain, nonnull) NSColor *colorDeprecated
To@property (nonatomic, copy, nonnull) NSColor *colorAvailable

DeclarationAvailability
From@property (nonatomic, retain, nullable) NSString *contentsDeprecated
To@property (nonatomic, copy, nullable) NSString *contentsAvailable

Declaration
From- (BOOL)setValue:(nonnull id)value forAnnotationKey:(nonnull NSString *)key
To- (BOOL)setValue:(nonnull id)value forAnnotationKey:(nonnull PDFAnnotationKey)key

Declaration
From- (BOOL)setBoolean:(BOOL)value forAnnotationKey:(nonnull NSString *)key
To- (BOOL)setBoolean:(BOOL)value forAnnotationKey:(nonnull PDFAnnotationKey)key

Declaration
From- (BOOL)setRect:(NSRect)value forAnnotationKey:(nonnull NSString *)key
To- (BOOL)setRect:(NSRect)value forAnnotationKey:(nonnull PDFAnnotationKey)key

Declaration
From- (nullable id)valueForAnnotationKey:(nonnull NSString *)key
To- (nullable id)valueForAnnotationKey:(nonnull PDFAnnotationKey)key

Declaration
From- (void)removeValueForAnnotationKey:(nonnull NSString *)key
To- (void)removeValueForAnnotationKey:(nonnull PDFAnnotationKey)key

Modified -[PDFAnnotation initWithDictionary:forPage:]
Availability
FromAvailable
ToDeprecated

Declaration
From@property (nonatomic, retain, nullable) PDFAction *mouseUpAction
To@property (nonatomic, strong, nullable) PDFAction *mouseUpAction

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_AppearanceDictionaryAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_AppearanceDictionaryDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_AppearanceStateAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_AppearanceStateDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_BorderAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_BorderDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_ColorAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_ColorDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_ContentsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_ContentsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_FlagsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_FlagsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_DateAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_DateDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_NameAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_NameDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_PageAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_PageDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_RectAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_RectDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_SubtypeAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_SubtypeDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_ActionAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_ActionDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_AdditionalActionsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_AdditionalActionsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_BorderStyleAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_BorderStyleDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_DefaultAppearanceAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_DefaultAppearanceDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_DestinationAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_DestinationDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_HighlightingModeAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_HighlightingModeDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_InklistAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_InklistDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_InteriorColorAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_InteriorColorDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_LinePointsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_LinePointsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_LineEndingStylesAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_LineEndingStylesDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_IconNameAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_IconNameDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_OpenAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_OpenDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_ParentAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_ParentDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_PopupAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_PopupDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_QuaddingAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_QuaddingDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_QuadPointsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_QuadPointsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_TextLabelAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_TextLabelDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetDefaultValueAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetDefaultValueDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetFieldFlagsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetFieldFlagsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetFieldTypeAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetFieldTypeDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetAppearanceDictionaryAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetAppearanceDictionaryDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetMaxLenAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetMaxLenDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetOptionsAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetOptionsDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetTextLabelUIAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetTextLabelUIDeprecated

DeclarationAvailability
FromNSString *const _Nonnull kPDFAnnotationKey_WidgetValueAvailable
ToPDFAnnotationKey _Nonnull kPDFAnnotationKey_WidgetValueDeprecated

../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
Removed -[PDFAnnotationButtonWidget isHighlighted]
Removed -[PDFAnnotationButtonWidget setHighlighted:]
HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
Modified PDFLineStyle
HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

../Frameworks/PDFKit.framework/Headers/PDFAnnotationLink.h
Removed -[PDFAnnotationLink setHighlighted:]
../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
Modified PDFMarkupType
HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h
Modified PDFLineStyle
HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationLine.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationText.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Modified PDFMarkupType
HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationMarkup.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

HeaderAvailability
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.hDeprecated
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.hAvailable

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

Header
From../Frameworks/PDFKit.framework/Headers/PDFAnnotationButtonWidget.h
To../Frameworks/PDFKit.framework/Headers/PDFAnnotationUtilities.h

../Frameworks/PDFKit.framework/Headers/PDFAppearanceCharacteristics.h
../Frameworks/PDFKit.framework/Headers/PDFBorder.h
Declaration
From@property (nonatomic, assign) PDFBorderStyle style
To@property (nonatomic) PDFBorderStyle style

Declaration
From@property (nonatomic, assign) CGFloat lineWidth
To@property (nonatomic) CGFloat lineWidth

Declaration
From@property (nonatomic, retain, nullable) NSArray *dashPattern
To@property (nonatomic, copy, nullable) NSArray *dashPattern

../Frameworks/PDFKit.framework/Headers/PDFDestination.h
Removed #def kPDFDestinationUnspecifiedValue
Declaration
From@property (nonatomic, assign) CGFloat zoom
To@property (nonatomic) CGFloat zoom

../Frameworks/PDFKit.framework/Headers/PDFDocument.h
Removed NSObject (PDFDocumentNotifications)
Removed -[NSObject documentDidUnlock:]
Removed -[NSObject documentDidBeginDocumentFind:]
Removed -[NSObject documentDidEndDocumentFind:]
Removed -[NSObject documentDidBeginPageFind:]
Removed -[NSObject documentDidEndPageFind:]
Removed -[NSObject documentDidFindMatch:]
Removed NSObject (PDFDocumentDelegate)
Removed -[NSObject didMatchString:]
Removed -[NSObject classForPage]
Removed -[NSObject classForAnnotationClass:]
Added -[PDFDocumentDelegate classForAnnotationClass:]
Declaration
FromNSString *const _Nonnull PDFDocumentDidUnlockNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidUnlockNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidBeginFindNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidBeginFindNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidEndFindNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidEndFindNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidBeginPageFindNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidBeginPageFindNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidEndPageFindNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidEndPageFindNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidFindMatchNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidFindMatchNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidBeginWriteNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidBeginWriteNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidEndWriteNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidEndWriteNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidBeginPageWriteNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidBeginPageWriteNotification

Declaration
FromNSString *const _Nonnull PDFDocumentDidEndPageWriteNotification
Toconst NSNotificationName _Nonnull PDFDocumentDidEndPageWriteNotification

Declaration
FromNSString *const _Nonnull PDFDocumentTitleAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentTitleAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentAuthorAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentAuthorAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentSubjectAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentSubjectAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentCreatorAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentCreatorAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentProducerAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentProducerAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentCreationDateAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentCreationDateAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentModificationDateAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentModificationDateAttribute

Declaration
FromNSString *const _Nonnull PDFDocumentKeywordsAttribute
Toconst PDFDocumentAttribute _Nonnull PDFDocumentKeywordsAttribute

Declaration
From@property (nonatomic, retain, nullable) NSDictionary *documentAttributes
To@property (nonatomic, copy, nullable) NSDictionary *documentAttributes

Declaration
From@property (nonatomic, readonly) int majorVersion
To@property (nonatomic, readonly) NSInteger majorVersion

Declaration
From@property (nonatomic, readonly) int minorVersion
To@property (nonatomic, readonly) NSInteger minorVersion

Declaration
From@property (nonatomic, weak, nullable) id delegate
To@property (nonatomic, weak, nullable) id<PDFDocumentDelegate> delegate

Declaration
From- (BOOL)writeToFile:(nonnull NSString *)path withOptions:(nullable NSDictionary *)options
To- (BOOL)writeToFile:(nonnull NSString *)path withOptions:(nullable NSDictionary<PDFDocumentWriteOption,id> *)options

Declaration
From- (BOOL)writeToURL:(nonnull NSURL *)url withOptions:(nullable NSDictionary *)options
To- (BOOL)writeToURL:(nonnull NSURL *)url withOptions:(nullable NSDictionary<PDFDocumentWriteOption,id> *)options

Declaration
From@property (nonatomic, retain, nullable) PDFOutline *outlineRoot
To@property (nonatomic, strong, nullable) PDFOutline *outlineRoot

Declaration
From- (nonnull NSArray<PDFSelection *> *)findString:(nonnull NSString *)string withOptions:(NSUInteger)options
To- (nonnull NSArray<PDFSelection *> *)findString:(nonnull NSString *)string withOptions:(NSStringCompareOptions)options

Declaration
From- (void)beginFindString:(nonnull NSString *)string withOptions:(NSUInteger)options
To- (void)beginFindString:(nonnull NSString *)string withOptions:(NSStringCompareOptions)options

Declaration
From- (void)beginFindStrings:(nonnull NSArray<NSString *> *)strings withOptions:(NSUInteger)options
To- (void)beginFindStrings:(nonnull NSArray<NSString *> *)strings withOptions:(NSStringCompareOptions)options

Declaration
From- (nullable PDFSelection *)findString:(nonnull NSString *)string fromSelection:(nullable PDFSelection *)selection withOptions:(NSUInteger)options
To- (nullable PDFSelection *)findString:(nonnull NSString *)string fromSelection:(nullable PDFSelection *)selection withOptions:(NSStringCompareOptions)options

../Frameworks/PDFKit.framework/Headers/PDFKitPlatform.h
Removed #def PDFKitPlatformChoiceWidgetView
Added #def PDFKIT_EXTERN
Added #def PDFKIT_CLASS_AVAILABLE
Added #def PDFKIT_CLASS_DEPRECATED
Added #def PDFKIT_ENUM_AVAILABLE
Added #def PDFKIT_ENUM_DEPRECATED
Added #def PDFKitPlatformTextFieldCell
Added #def PDFKitPlatformChoiceWidgetComboBoxView
Added #def PDFKitPlatformChoiceWidgetListView
Added #def PDFKitPlatformAccessibilityElement
Added #def PDFEdgeInsetsZero
../Frameworks/PDFKit.framework/Headers/PDFOutline.h
Declaration
From@property (nonatomic, readonly, nullable) PDFDocument *document
To@property (nonatomic, readonly, weak, nullable) PDFDocument *document

Declaration
From@property (nonatomic, retain, nullable) NSString *label
To@property (nonatomic, copy, nullable) NSString *label

Declaration
From@property (nonatomic, assign) BOOL isOpen
To@property (nonatomic) BOOL isOpen

Declaration
From@property (nonatomic, retain, nullable) PDFDestination *destination
To@property (nonatomic, strong, nullable) PDFDestination *destination

Declaration
From@property (nonatomic, retain, nullable) PDFAction *action
To@property (nonatomic, strong, nullable) PDFAction *action

../Frameworks/PDFKit.framework/Headers/PDFPage.h
Declaration
From@property (nonatomic, assign) NSInteger rotation
To@property (nonatomic) NSInteger rotation

Declaration
From@property (nonatomic, assign) BOOL displaysAnnotations
To@property (nonatomic) BOOL displaysAnnotations

../Frameworks/PDFKit.framework/Headers/PDFSelection.h
Declaration
From@property (nonatomic, retain, nullable) NSColor *color
To@property (nonatomic, copy, nullable) NSColor *color

../Frameworks/PDFKit.framework/Headers/PDFThumbnailView.h
Declaration
From- (nonnull NSArray<PDFPage *> *)selectedPages
To@property (nonatomic, readonly, strong, nullable) NSArray<PDFPage *> *selectedPages

Declaration
From@property (nonatomic, assign) NSSize thumbnailSize
To@property (nonatomic) NSSize thumbnailSize

Declaration
From@property (nonatomic, assign) NSUInteger maximumNumberOfColumns
To@property (nonatomic) NSUInteger maximumNumberOfColumns

Declaration
From@property (nonatomic, assign) BOOL allowsDragging
To@property (nonatomic) BOOL allowsDragging

Declaration
From@property (nonatomic, assign) BOOL allowsMultipleSelection
To@property (nonatomic) BOOL allowsMultipleSelection

../Frameworks/PDFKit.framework/Headers/PDFView.h
Added PDFView.acceptsDraggedFiles
Declaration
FromNSString *const _Nonnull PDFViewDocumentChangedNotification
Toconst NSNotificationName _Nonnull PDFViewDocumentChangedNotification

Declaration
FromNSString *const _Nonnull PDFViewChangedHistoryNotification
Toconst NSNotificationName _Nonnull PDFViewChangedHistoryNotification

Declaration
FromNSString *const _Nonnull PDFViewPageChangedNotification
Toconst NSNotificationName _Nonnull PDFViewPageChangedNotification

Declaration
FromNSString *const _Nonnull PDFViewScaleChangedNotification
Toconst NSNotificationName _Nonnull PDFViewScaleChangedNotification

Declaration
FromNSString *const _Nonnull PDFViewAnnotationHitNotification
Toconst NSNotificationName _Nonnull PDFViewAnnotationHitNotification

Declaration
FromNSString *const _Nonnull PDFViewCopyPermissionNotification
Toconst NSNotificationName _Nonnull PDFViewCopyPermissionNotification

Declaration
FromNSString *const _Nonnull PDFViewPrintPermissionNotification
Toconst NSNotificationName _Nonnull PDFViewPrintPermissionNotification

Declaration
FromNSString *const _Nonnull PDFViewAnnotationWillHitNotification
Toconst NSNotificationName _Nonnull PDFViewAnnotationWillHitNotification

Declaration
FromNSString *const _Nonnull PDFViewSelectionChangedNotification
Toconst NSNotificationName _Nonnull PDFViewSelectionChangedNotification

Declaration
FromNSString *const _Nonnull PDFViewDisplayModeChangedNotification
Toconst NSNotificationName _Nonnull PDFViewDisplayModeChangedNotification

Declaration
FromNSString *const _Nonnull PDFViewDisplayBoxChangedNotification
Toconst NSNotificationName _Nonnull PDFViewDisplayBoxChangedNotification

Declaration
FromNSString *const _Nonnull PDFViewVisiblePagesChangedNotification
Toconst NSNotificationName _Nonnull PDFViewVisiblePagesChangedNotification

Declaration
From- (BOOL)canGoToFirstPage
To@property (nonatomic, readonly) BOOL canGoToFirstPage

Declaration
From- (BOOL)canGoToLastPage
To@property (nonatomic, readonly) BOOL canGoToLastPage

Declaration
From- (BOOL)canGoToNextPage
To@property (nonatomic, readonly) BOOL canGoToNextPage

Declaration
From- (BOOL)canGoToPreviousPage
To@property (nonatomic, readonly) BOOL canGoToPreviousPage

Declaration
From- (BOOL)canGoBack
To@property (nonatomic, readonly) BOOL canGoBack

Declaration
From- (BOOL)canGoForward
To@property (nonatomic, readonly) BOOL canGoForward

Declaration
From@property (nonatomic, assign) PDFDisplayMode displayMode
To@property (nonatomic) PDFDisplayMode displayMode

Declaration
From@property (nonatomic, assign) BOOL displaysPageBreaks
To@property (nonatomic) BOOL displaysPageBreaks

Declaration
From@property (nonatomic, assign) PDFDisplayBox displayBox
To@property (nonatomic) PDFDisplayBox displayBox

Declaration
From@property (nonatomic, assign) BOOL displaysAsBook
To@property (nonatomic) BOOL displaysAsBook

Declaration
From@property (nonatomic, retain, nonnull) NSColor *backgroundColor
To@property (nonatomic, strong, nonnull) NSColor *backgroundColor

Declaration
From@property (nonatomic, assign) PDFInterpolationQuality interpolationQuality
To@property (nonatomic) PDFInterpolationQuality interpolationQuality

Declaration
From@property (nonatomic, assign) CGFloat scaleFactor
To@property (nonatomic) CGFloat scaleFactor

Declaration
From@property (nonatomic, assign) BOOL autoScales
To@property (nonatomic) BOOL autoScales

Declaration
From- (BOOL)canZoomIn
To@property (nonatomic, readonly) BOOL canZoomIn

Declaration
From- (BOOL)canZoomOut
To@property (nonatomic, readonly) BOOL canZoomOut

Declaration
From@property (nonatomic, retain, nullable) PDFSelection *currentSelection
To@property (nonatomic, strong, nullable) PDFSelection *currentSelection

Declaration
From@property (nonatomic, retain, nullable) NSArray<PDFSelection *> *highlightedSelections
To@property (nonatomic, copy, nullable) NSArray<PDFSelection *> *highlightedSelections

Declaration
From- (nullable NSArray<PDFPage *> *)visiblePages
To@property (nonatomic, readonly, nonnull) NSArray<PDFPage *> *visiblePages

Declaration
From@property (nonatomic, assign) BOOL enableDataDetectors
To@property (nonatomic) BOOL enableDataDetectors

Declaration
From@property (nonatomic, assign) BOOL shouldAntiAlias
To@property (nonatomic) BOOL shouldAntiAlias

Declaration
From@property (nonatomic, assign) CGFloat greekingThreshold
To@property (nonatomic) CGFloat greekingThreshold

DeclarationAvailability
From@property (nonatomic, assign) BOOL allowsDraggingAvailable
To@property (nonatomic) BOOL allowsDraggingDeprecated

../Frameworks/QuickLookUI.framework/Headers/QLPreviewingController.h