JLChen
2021-05-18 a869383e163a18cdedcf587383c1eca043129754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  Copyright © 2016年 dahua. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface UIApplication (LeChange)
 
/// 判断App是否为横屏
///
/// - Returns: Bool
+ (BOOL)lc_isAppLandscape;
 
/// 判断App是否为竖屏
///
/// - Returns: Bool
+ (BOOL)lc_isAppPortrait;
 
/// App当前方向
///
/// - Returns: UIInterfaceOrientation
+ (UIInterfaceOrientation) lc_appOrientation;
 
/**
 程序的KeyWindow
 
 @return UIWindow
 */
+ (UIWindow *)lc_appWindow;
@end