123456789101112131415161718192021 |
- //
- // BlackDoorManager.h
- // KidsWatchIOS
- //
- // Created by 振兴 刘 on 2019/11/22.
- // Copyright © 2019 All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- #define BDM_SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
- #define BDM_SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
- @interface BlackDoorManager : UIView
- @end
- NS_ASSUME_NONNULL_END
|