// // NSObject+OCExtensions.h // PDF Reader Pro // // Created by tangchao on 2024/2/4. // #import <Foundation/Foundation.h> #import <AppKit/AppKit.h> NS_ASSUME_NONNULL_BEGIN @interface NSObject (OCExtensions) @end @interface NSDocument (OCExtensions) - (void)newSaveArchiveToURL:(NSURL *)fileURL email:(BOOL)email; @end @interface NSString (OCExtensions) - (BOOL)isCaseInsensitiveEqual:(NSString *)aString; @end NS_ASSUME_NONNULL_END