20 lines
259 B
C
20 lines
259 B
C
|
|
//
|
||
|
|
// UIWindow+TUICalling.h
|
||
|
|
// TUICalling
|
||
|
|
//
|
||
|
|
// Created by noah on 2022/1/17.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface UIWindow (TUICalling)
|
||
|
|
|
||
|
|
/// 自定义显示窗口操作
|
||
|
|
- (void)t_makeKeyAndVisible;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|