12345678910111213141516171819202122232425 |
- //
- // BaseViewController.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/29.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface BaseViewController : UIViewController
- @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
- @property (nonatomic, strong) IBOutlet UIButton* backView;
- @property (nonatomic, strong) IBInspectable NSString* topTitle;
- @property (nonatomic, readonly) BOOL prefersUnifiedBackground;
- @property (nonatomic, readonly) BOOL prefersAutomaticBackView;
- @end
|