12345678910111213141516171819202122232425 |
- //
- // KMUnlockAlertViewController.h
- // PDF Reader Pro Edition
- //
- // Created by Niehaoyu on 2023/4/3.
- //
- #import <Cocoa/Cocoa.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KMUnlockAlertViewController : NSViewController
- @property (nonatomic,copy) void (^callback) (NSInteger index);
- @property (nonatomic,copy) void (^mouseEventCall) (BOOL mouseEnter);
- - (void)addtrackingAreaInfo;
- - (void)removeTrackingAreaInfo;
- @end
- NS_ASSUME_NONNULL_END
|