12345678910111213141516171819202122 |
- //
- // UIViewController+TD.h
- // smartRhino
- //
- // Created by tederen on 2019/10/22.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIViewController (TD)
- @property (nonatomic, strong) UIView *statusBar;
- - (void)loadStatusBarColor:(UIColor *)color;
- @end
- NS_ASSUME_NONNULL_END
|