123456789101112131415161718192021 |
- //
- // KMStatusBar.h
- // PDF Reader Pro Edition
- //
- // Created by 王帅 on 2018/9/30.
- //
- #import <Foundation/Foundation.h>
- #import <AppKit/AppKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KMStatusBar : NSObject
- @property (nonatomic,assign) BOOL isShow;
- + (KMStatusBar *)systemStatusBar;
- @end
- NS_ASSUME_NONNULL_END
|