| 123456789101112131415161718192021 |
- //
- // UIDevice+extension.h
- // shiku_im
- //
- // Created by liujl on 2019/8/18.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIDevice (extension)
- /**
- * @interfaceOrientation 输入要强制转屏的方向
- */
- + (void)switchNewOrientation:(UIInterfaceOrientation)interfaceOrientation;
- @end
- NS_ASSUME_NONNULL_END
|